Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
index bc7e3f971c6cb19d582128818ccbb149b6b4beb2..e86056e924a79f0165509ea0ebc076bce26d1ce0 100644 |
--- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
@@ -883,12 +883,6 @@ import java.util.Map; |
return Color.WHITE; |
} |
- public void setBackgroundColor(int color) { |
- if (mNativeContentViewCore != 0 && getBackgroundColor() != color) { |
- nativeSetBackgroundColor(mNativeContentViewCore, color); |
- } |
- } |
- |
@CalledByNative |
private void onBackgroundColorChanged(int color) { |
getContentViewClient().onBackgroundColorChanged(color); |
@@ -3101,8 +3095,6 @@ import java.util.Map; |
private native int nativeGetBackgroundColor(int nativeContentViewCoreImpl); |
- private native void nativeSetBackgroundColor(int nativeContentViewCoreImpl, int color); |
- |
private native void nativeOnShow(int nativeContentViewCoreImpl); |
private native void nativeOnHide(int nativeContentViewCoreImpl); |