Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1198)

Unified Diff: android_webview/javatests/src/org/chromium/android_webview/test/CookieManagerStartupTest.java

Issue 876413007: [Android WebView] Rename ShouldInterceptRequestParams -> AwWebResourceRequest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed glue code Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/javatests/src/org/chromium/android_webview/test/CookieManagerStartupTest.java
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/CookieManagerStartupTest.java b/android_webview/javatests/src/org/chromium/android_webview/test/CookieManagerStartupTest.java
index f306ef4aed65e492eb206caca918f1e5e85601b5..3d84f28ecd28c6e108974c6953efde6782b2ef0d 100644
--- a/android_webview/javatests/src/org/chromium/android_webview/test/CookieManagerStartupTest.java
+++ b/android_webview/javatests/src/org/chromium/android_webview/test/CookieManagerStartupTest.java
@@ -122,8 +122,7 @@ public class CookieManagerStartupTest extends AwTestBase {
String url = "http://www.example.com";
TestAwContentsClient contentsClient = new TestAwContentsClient() {
@Override
- public AwWebResourceResponse shouldInterceptRequest(
- ShouldInterceptRequestParams params) {
+ public AwWebResourceResponse shouldInterceptRequest(AwWebResourceRequest request) {
(new AwCookieManager()).getCookie("www.example.com");
return null;
}

Powered by Google App Engine
This is Rietveld 408576698