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

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

Issue 970883002: [Android WebView] Synthesize a fake page loading event on page source modification (Re-land) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed findbugs warning Created 5 years, 9 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
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 19 matching lines...) Expand all
30 @CalledByNative 30 @CalledByNative
31 public abstract void closeContents(); 31 public abstract void closeContents();
32 32
33 @Override 33 @Override
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
41 @Override
42 @CalledByNative
43 public abstract void navigationStateChanged(int flags);
40 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698