| Index: android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| diff --git a/android_webview/java/src/org/chromium/android_webview/AwContents.java b/android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| index a1bf1de6b6e5bcb7b091953acf5d4ea54f436c85..61c392c7fa4f3fdf90cebfb068be3d668f5131b0 100644
|
| --- a/android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| +++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java
|
| @@ -651,9 +651,6 @@ public class AwContents {
|
| setInternalAccessAdapter(fullScreenView.getInternalAccessAdapter());
|
| setContainerView(fullScreenView);
|
|
|
| - // Make the background transparent so that the ContentVideoView is visible
|
| - // behind the FullScreenView.
|
| - nativeSetHasTransparentBackground(mNativeAwContents, true);
|
| return fullScreenView;
|
| }
|
|
|
| @@ -685,7 +682,6 @@ public class AwContents {
|
| setInternalAccessAdapter(mFullScreenTransitionsState.getInitialInternalAccessDelegate());
|
| setContainerView(initialContainerView);
|
|
|
| - nativeSetHasTransparentBackground(mNativeAwContents, false);
|
| mFullScreenTransitionsState.exitFullScreen();
|
| }
|
|
|
| @@ -2449,8 +2445,6 @@ public class AwContents {
|
| private native long nativeReleasePopupAwContents(long nativeAwContents);
|
| private native void nativeFocusFirstNode(long nativeAwContents);
|
| private native void nativeSetBackgroundColor(long nativeAwContents, int color);
|
| - private native void nativeSetHasTransparentBackground(
|
| - long nativeAwContents, boolean transparent);
|
|
|
| private native long nativeGetAwDrawGLViewContext(long nativeAwContents);
|
| private native long nativeCapturePicture(long nativeAwContents, int width, int height);
|
|
|