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

Side by Side Diff: android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegate.java

Issue 1126383005: [Android WebView] Send WebChromeClient.onReceivedTitle when navigating back (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.android_webview; 5 package org.chromium.android_webview;
6 6
7 import org.chromium.base.CalledByNative; 7 import org.chromium.base.CalledByNative;
8 import org.chromium.base.JNINamespace; 8 import org.chromium.base.JNINamespace;
9 import org.chromium.base.VisibleForTesting; 9 import org.chromium.base.VisibleForTesting;
10 import org.chromium.components.web_contents_delegate_android.WebContentsDelegate Android; 10 import org.chromium.components.web_contents_delegate_android.WebContentsDelegate Android;
(...skipping 23 matching lines...) Expand all
34 @CalledByNative 34 @CalledByNative
35 public abstract void activateContents(); 35 public abstract void activateContents();
36 36
37 // Call in response to a prior runFileChooser call. 37 // Call in response to a prior runFileChooser call.
38 protected static native void nativeFilesSelectedInChooser(int processId, int renderId, 38 protected static native void nativeFilesSelectedInChooser(int processId, int renderId,
39 int modeFlags, String[] filePath, String[] displayName); 39 int modeFlags, String[] filePath, String[] displayName);
40 40
41 @Override 41 @Override
42 @CalledByNative 42 @CalledByNative
43 public abstract void navigationStateChanged(int flags); 43 public abstract void navigationStateChanged(int flags);
44
45 // Not an override, because WebContentsDelegateAndroid maps this call
46 // into onLoad{Started|Stopped}.
47 @CalledByNative
48 public abstract void loadingStateChanged();
44 } 49 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698