Skip to content

Commit

Permalink
Switch to Cronet 56_0_2924_0
Browse files Browse the repository at this point in the history
This is the second CL in the 3 CL process to switch Cronet versions.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=140074017
  • Loading branch information
mgersh authored and ojw28 committed Nov 25, 2016
1 parent ba49f51 commit cbf5988
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
import org.chromium.net.UrlRequest;
import org.chromium.net.UrlRequestException;
import org.chromium.net.UrlResponseInfo;
import org.chromium.net.impl.UrlResponseInfoImpl;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
Expand Down Expand Up @@ -138,7 +139,7 @@ public void setUp() throws Exception {
private UrlResponseInfo createUrlResponseInfo(int statusCode) {
ArrayList<Map.Entry<String, String>> responseHeaderList = new ArrayList<>();
responseHeaderList.addAll(testResponseHeader.entrySet());
return new UrlResponseInfo(
return new UrlResponseInfoImpl(
Collections.singletonList(TEST_URL),
statusCode,
null, // httpStatusText
Expand Down

0 comments on commit cbf5988

Please sign in to comment.