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

Unified Diff: components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java

Issue 662603004: Fix Java indentation issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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: components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java
diff --git a/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java b/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java
index c276916f65e18c761b81b7f724f72118fbf35447..c1fe69ce5e34d825de024a89eb11ec16d4227841 100644
--- a/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java
+++ b/components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorChooserAndroid.java
@@ -25,11 +25,11 @@ public class ColorChooserAndroid {
private ColorChooserAndroid(long nativeColorChooserAndroid,
Context context, int initialColor, ColorSuggestion[] suggestions) {
OnColorChangedListener listener = new OnColorChangedListener() {
- @Override
- public void onColorChanged(int color) {
- mDialog.dismiss();
- nativeOnColorChosen(mNativeColorChooserAndroid, color);
- }
+ @Override
+ public void onColorChanged(int color) {
+ mDialog.dismiss();
+ nativeOnColorChosen(mNativeColorChooserAndroid, color);
+ }
};
mNativeColorChooserAndroid = nativeColorChooserAndroid;
@@ -52,7 +52,7 @@ public class ColorChooserAndroid {
int initialColor,
ColorSuggestion[] suggestions) {
ColorChooserAndroid chooser = new ColorChooserAndroid(nativeColorChooserAndroid,
- contentViewCore.getContext(), initialColor, suggestions);
+ contentViewCore.getContext(), initialColor, suggestions);
chooser.openColorChooser();
return chooser;
}

Powered by Google App Engine
This is Rietveld 408576698