| Index: content/browser/android/content_view_core_impl.cc
|
| diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
|
| index 2ef62bec3df0142e13e38f818bb89893184867ed..a4dbdb7505614e4ad2b1a1c1b2393638c174817e 100644
|
| --- a/content/browser/android/content_view_core_impl.cc
|
| +++ b/content/browser/android/content_view_core_impl.cc
|
| @@ -1583,6 +1583,12 @@ jint ContentViewCoreImpl::GetCurrentRenderProcessId(JNIEnv* env, jobject obj) {
|
| web_contents_->GetRenderViewHost());
|
| }
|
|
|
| +void ContentViewCoreImpl::SetBackgroundOpaque(JNIEnv* env, jobject jobj,
|
| + jboolean opaque) {
|
| + if (GetRenderWidgetHostViewAndroid())
|
| + GetRenderWidgetHostViewAndroid()->SetBackgroundOpaque(opaque);
|
| +}
|
| +
|
| void ContentViewCoreImpl::OnSmartClipDataExtracted(
|
| const base::string16& result) {
|
| JNIEnv* env = AttachCurrentThread();
|
|
|