| 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 a595d3f9b667cf6f7430ff74e40708bf62d6a0e7..5c55fdf9743af4512153652a7dca90d37ba97fbc 100644
|
| --- a/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegate.java
|
| +++ b/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegate.java
|
| @@ -21,7 +21,7 @@ import org.chromium.components.web_contents_delegate_android.WebContentsDelegate
|
| public abstract class AwWebContentsDelegate extends WebContentsDelegateAndroid {
|
| // Callback filesSelectedInChooser() when done.
|
| @CalledByNative
|
| - public abstract void runFileChooser(int processId, int renderId, int mode_flags,
|
| + public abstract void runFileChooser(int processId, int renderId, int modeFlags,
|
| String acceptTypes, String title, String defaultFilename, boolean capture);
|
|
|
| @CalledByNative
|
| @@ -41,5 +41,5 @@ public abstract class AwWebContentsDelegate extends WebContentsDelegateAndroid {
|
|
|
| // Call in response to a prior runFileChooser call.
|
| protected static native void nativeFilesSelectedInChooser(int processId, int renderId,
|
| - int mode_flags, String[] filePath, String[] displayName);
|
| + int modeFlags, String[] filePath, String[] displayName);
|
| }
|
|
|