| 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 9a3bf0c67c75a39fd5c943b2f7b8ccba64cf0d29..156e94abe9d560ed3c8f774b80dd20f26fc46114 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
|
| @@ -3004,6 +3004,12 @@ public class ContentViewCore
|
| mSmartClipDataListener = listener;
|
| }
|
|
|
| + public void setBackgroundOpaque(boolean opaque) {
|
| + if (mNativeContentViewCore != 0) {
|
| + nativeSetBackgroundOpaque(mNativeContentViewCore, opaque);
|
| + }
|
| + }
|
| +
|
| /**
|
| * Offer a long press gesture to the embedding View, primarily for WebView compatibility.
|
| *
|
| @@ -3211,4 +3217,5 @@ public class ContentViewCore
|
|
|
| private native void nativeExtractSmartClipData(long nativeContentViewCoreImpl,
|
| int x, int y, int w, int h);
|
| + private native void nativeSetBackgroundOpaque(long nativeContentViewCoreImpl, boolean opaque);
|
| }
|
|
|