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

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

Issue 452613002: [Checkstyle] Update class member variable names to match style guides. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: boliu nits Created 6 years, 4 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 70a148b57f904c83ff95dc63ee7612cec82202ff..85466cecd6db88d9d7b636ba107591430121121e 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java
@@ -171,13 +171,13 @@ class AwWebContentsDelegateAdapter extends AwWebContentsDelegate {
params.capture = capture;
mContentsClient.showFileChooser(new ValueCallback<String[]>() {
- boolean completed = false;
+ boolean mCompleted = false;
@Override
public void onReceiveValue(String[] results) {
- if (completed) {
+ if (mCompleted) {
throw new IllegalStateException("Duplicate showFileChooser result");
}
- completed = true;
+ mCompleted = true;
nativeFilesSelectedInChooser(processId, renderId, mode_flags, results);
}
}, params);

Powered by Google App Engine
This is Rietveld 408576698