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

Unified Diff: content/shell/android/java/src/org/chromium/content_shell/Shell.java

Issue 600983002: [Checkstyle] Fix misc style issues in Java files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build Created 6 years, 3 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: content/shell/android/java/src/org/chromium/content_shell/Shell.java
diff --git a/content/shell/android/java/src/org/chromium/content_shell/Shell.java b/content/shell/android/java/src/org/chromium/content_shell/Shell.java
index 85190a322189e6df399399ca96840e402919109e..cb8c99542748ac428e25ca8d973b5d7c74fbda1f 100644
--- a/content/shell/android/java/src/org/chromium/content_shell/Shell.java
+++ b/content/shell/android/java/src/org/chromium/content_shell/Shell.java
@@ -229,14 +229,14 @@ public class Shell extends LinearLayout {
if (mNavigationController.canGoForward()) mNavigationController.goForward();
}
});
- mStopButton = (ImageButton)findViewById(R.id.stop);
+ mStopButton = (ImageButton) findViewById(R.id.stop);
mStopButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (mLoading) mWebContents.stop();
}
});
- mReloadButton = (ImageButton)findViewById(R.id.reload);
+ mReloadButton = (ImageButton) findViewById(R.id.reload);
mReloadButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {

Powered by Google App Engine
This is Rietveld 408576698