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

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

Issue 188723005: Fix a brace style according to the style guide. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/java/src/org/chromium/android_webview/AwContents.java
===================================================================
--- android_webview/java/src/org/chromium/android_webview/AwContents.java (revision 255444)
+++ android_webview/java/src/org/chromium/android_webview/AwContents.java (working copy)
@@ -1764,8 +1764,9 @@
* @see android.webkit.WebView#clearFormData()
*/
public void hideAutofillPopup() {
- if (mAwAutofillManagerDelegate != null)
+ if (mAwAutofillManagerDelegate != null) {
mAwAutofillManagerDelegate.hideAutofillPopup();
+ }
}
public void setNetworkAvailable(boolean networkUp) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698