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

Unified Diff: remoting/android/java/src/org/chromium/chromoting/Desktop.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: remoting/android/java/src/org/chromium/chromoting/Desktop.java
diff --git a/remoting/android/java/src/org/chromium/chromoting/Desktop.java b/remoting/android/java/src/org/chromium/chromoting/Desktop.java
index f6b4d2605d06e035729f2f986196708d2e3d597c..5753c8ffad44c13f5da3b061949187f05d63b5a8 100644
--- a/remoting/android/java/src/org/chromium/chromoting/Desktop.java
+++ b/remoting/android/java/src/org/chromium/chromoting/Desktop.java
@@ -47,8 +47,8 @@ public class Desktop extends ActionBarActivity implements View.OnSystemUiVisibil
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.desktop);
- mRemoteHostDesktop = (DesktopView)findViewById(R.id.desktop_view);
- mOverlayButton = (ImageButton)findViewById(R.id.desktop_overlay_button);
+ mRemoteHostDesktop = (DesktopView) findViewById(R.id.desktop_view);
+ mOverlayButton = (ImageButton) findViewById(R.id.desktop_overlay_button);
mRemoteHostDesktop.setDesktop(this);
// Ensure the button is initially hidden.
@@ -184,7 +184,7 @@ public class Desktop extends ActionBarActivity implements View.OnSystemUiVisibil
mActivityLifecycleListener.onActivityOptionsItemSelected(this, item);
if (id == R.id.actionbar_keyboard) {
- ((InputMethodManager)getSystemService(INPUT_METHOD_SERVICE)).toggleSoftInput(0, 0);
+ ((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE)).toggleSoftInput(0, 0);
return true;
}
if (id == R.id.actionbar_hide) {

Powered by Google App Engine
This is Rietveld 408576698