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

Unified Diff: android_webview/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java

Issue 240163005: Deliver IPC messages together with SwapCompositorFrame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use IPC? Created 6 years, 7 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/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java
diff --git a/android_webview/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java b/android_webview/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java
index 353250cd5a5ef46ecb7d396bdb6dee57f0e5addb..e44d7a96da8163da88941944d86687d3988d239c 100644
--- a/android_webview/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java
+++ b/android_webview/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java
@@ -6,6 +6,7 @@ package org.chromium.android_webview.test;
import android.graphics.Bitmap;
import android.graphics.Picture;
+import android.net.Uri;
import android.net.http.SslError;
import android.os.Looper;
import android.os.Message;
@@ -219,4 +220,7 @@ public class NullContentsClient extends AwContentsClient {
public Bitmap getDefaultVideoPoster() {
return null;
}
+
+ public void onPageStateVisible(Uri url, int pageState) {
+ }
}

Powered by Google App Engine
This is Rietveld 408576698