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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegate.java

Issue 1161783005: [Android WebView] Send WebChromeClient.onReceivedTitle when navigating back (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed typo Created 5 years, 6 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/java/src/org/chromium/android_webview/AwWebContentsDelegate.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegate.java b/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegate.java
index bf5af89df0bf4cac4e0a693c57b2c680faeef40d..e8c4a5dca09e7a096bfb18eb6b4552d040bc59d9 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegate.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegate.java
@@ -41,4 +41,9 @@ public abstract class AwWebContentsDelegate extends WebContentsDelegateAndroid {
@Override
@CalledByNative
public abstract void navigationStateChanged(int flags);
+
+ // Not an override, because WebContentsDelegateAndroid maps this call
+ // into onLoad{Started|Stopped}.
+ @CalledByNative
+ public abstract void loadingStateChanged();
}

Powered by Google App Engine
This is Rietveld 408576698