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

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

Issue 2735633004: HTML Media Capture: update capture attribute to use string. (Closed)
Patch Set: Fix for android webview Created 3 years, 8 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/AwWebContentsDelegateAdapter.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java b/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java
index 549caaf82a23b03d42e19b3c90a9bf2dd4d25d62..e41e46fd3e1728a7fefdb430d07b7c4979011e74 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java
@@ -220,7 +220,7 @@ class AwWebContentsDelegateAdapter extends AwWebContentsDelegate {
@Override
public void runFileChooser(final int processId, final int renderId, final int modeFlags,
- String acceptTypes, String title, String defaultFilename, boolean capture) {
+ String acceptTypes, String title, String defaultFilename, String capture) {
AwContentsClient.FileChooserParamsImpl params = new AwContentsClient.FileChooserParamsImpl(
modeFlags, acceptTypes, title, defaultFilename, capture);

Powered by Google App Engine
This is Rietveld 408576698