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 a7bb43a2b5a1d1f9812401ffd9b18df1f71712a1..ab134f54f62cca4ae8dcb11ffba41a761c7da84c 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 |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Copyright 2012 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -20,9 +20,9 @@ import org.chromium.ui.OnColorChangedListener; |
@JNINamespace("web_contents_delegate_android") |
public class ColorChooserAndroid { |
private final ColorPickerDialog mDialog; |
- private final int mNativeColorChooserAndroid; |
+ private final long mNativeColorChooserAndroid; |
- private ColorChooserAndroid(int nativeColorChooserAndroid, |
+ private ColorChooserAndroid(long nativeColorChooserAndroid, |
Context context, int initialColor, ColorSuggestion[] suggestions) { |
OnColorChangedListener listener = new OnColorChangedListener() { |
@Override |
@@ -75,5 +75,5 @@ public class ColorChooserAndroid { |
} |
// Implemented in color_chooser_android.cc |
- private native void nativeOnColorChosen(int nativeColorChooserAndroid, int color); |
+ private native void nativeOnColorChosen(long nativeColorChooserAndroid, int color); |
} |