| Index: content/public/android/java/src/org/chromium/content/browser/ContentVideoView.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentVideoView.java b/content/public/android/java/src/org/chromium/content/browser/ContentVideoView.java
|
| index 8ad008b82750c855337afcda70e850c7c699362a..a1c2f1492ec1b3c39295bfac80f6b53c224d5767 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentVideoView.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentVideoView.java
|
| @@ -286,7 +286,7 @@ public class ContentVideoView extends FrameLayout implements SurfaceHolder.Callb
|
| if (mSurfaceHolder != null) {
|
| mCurrentState = STATE_IDLE;
|
| if (mNativeContentVideoView != 0) {
|
| - nativeUpdateMediaMetadata(mNativeContentVideoView);
|
| + nativeRequestMediaMetadata(mNativeContentVideoView);
|
| nativeSetSurface(mNativeContentVideoView,
|
| mSurfaceHolder.getSurface());
|
| }
|
| @@ -429,7 +429,7 @@ public class ContentVideoView extends FrameLayout implements SurfaceHolder.Callb
|
| boolean relaseMediaPlayer);
|
| private native int nativeGetCurrentPosition(long nativeContentVideoView);
|
| private native int nativeGetDurationInMilliSeconds(long nativeContentVideoView);
|
| - private native void nativeUpdateMediaMetadata(long nativeContentVideoView);
|
| + private native void nativeRequestMediaMetadata(long nativeContentVideoView);
|
| private native int nativeGetVideoWidth(long nativeContentVideoView);
|
| private native int nativeGetVideoHeight(long nativeContentVideoView);
|
| private native boolean nativeIsPlaying(long nativeContentVideoView);
|
|
|