Fix a brace style according to the style guide.

Review URL: https://codereview.chromium.org/188723005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255637 0039d316-1c4b-4281-b951-d872f2087c98
parent 85bd656d
...@@ -1764,9 +1764,10 @@ public class AwContents { ...@@ -1764,9 +1764,10 @@ public class AwContents {
* @see android.webkit.WebView#clearFormData() * @see android.webkit.WebView#clearFormData()
*/ */
public void hideAutofillPopup() { public void hideAutofillPopup() {
if (mAwAutofillManagerDelegate != null) if (mAwAutofillManagerDelegate != null) {
mAwAutofillManagerDelegate.hideAutofillPopup(); mAwAutofillManagerDelegate.hideAutofillPopup();
} }
}
public void setNetworkAvailable(boolean networkUp) { public void setNetworkAvailable(boolean networkUp) {
if (mNativeAwContents == 0) return; if (mNativeAwContents == 0) return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment