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

Unified Diff: remoting/android/java/src/org/chromium/chromoting/Chromoting.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/Chromoting.java
diff --git a/remoting/android/java/src/org/chromium/chromoting/Chromoting.java b/remoting/android/java/src/org/chromium/chromoting/Chromoting.java
index 956cf75727a242640fa45e0ffd8afca0a1f5e7f7..f21efccb8eeda585a3eafaf16852bed1517fe911 100644
--- a/remoting/android/java/src/org/chromium/chromoting/Chromoting.java
+++ b/remoting/android/java/src/org/chromium/chromoting/Chromoting.java
@@ -155,7 +155,7 @@ public class Chromoting extends Activity implements JniInterface.ConnectionListe
mHostListLoader = new HostListLoader();
// Get ahold of our view widgets.
- mHostListView = (ListView)findViewById(R.id.hostList_chooser);
+ mHostListView = (ListView) findViewById(R.id.hostList_chooser);
mHostListView.setEmptyView(findViewById(R.id.hostList_empty));
mProgressView = findViewById(R.id.hostList_progress);
@@ -457,6 +457,7 @@ public class Chromoting extends Activity implements JniInterface.ConnectionListe
private ThirdPartyTokenFetcher createTokenFetcher(HostInfo host) {
ThirdPartyTokenFetcher.Callback callback = new ThirdPartyTokenFetcher.Callback() {
+ @Override
public void onTokenFetched(String code, String accessToken) {
// The native client sends the OAuth authorization code to the host as the token so
// that the host can obtain the shared secret from the third party authorization

Powered by Google App Engine
This is Rietveld 408576698