| 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;
|
| }
|
|
|