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 24900f2d9685347b0d0f6ad09601b41484517164..1304b984dc4216f2c6dbc9642721b5f031155597 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 |
@@ -277,6 +277,7 @@ public class ContentViewCore implements MotionEventDelegate, NavigationClient { |
/** |
* @return The context used for creating this ContentViewCore. |
*/ |
+ @CalledByNative |
public Context getContext() { |
return mContext; |
} |
@@ -2638,6 +2639,11 @@ public class ContentViewCore implements MotionEventDelegate, NavigationClient { |
getContentViewClient().onExternalVideoSurfaceRequested(playerId); |
} |
+ @CalledByNative |
+ private ContentVideoViewClient getContentVideoViewClient() { |
+ return mContentViewClient.getContentVideoViewClient(); |
+ } |
+ |
private native int nativeInit(boolean hardwareAccelerated, boolean inputEventsDeliveredAtVSync, |
int webContentsPtr, int windowAndroidPtr); |