| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |