| Index: content/browser/android/content_video_view.h
|
| diff --git a/content/browser/android/content_video_view.h b/content/browser/android/content_video_view.h
|
| index 7946792cf29937c2cf9ee07d8a7805e63bc6285a..37b7f2e8be7738653147cc5bc7f46fd4e54cc180 100644
|
| --- a/content/browser/android/content_video_view.h
|
| +++ b/content/browser/android/content_video_view.h
|
| @@ -41,10 +41,6 @@ class ContentVideoView {
|
| static ContentVideoView* GetInstance();
|
|
|
| // Getter method called by the Java class to get the media information.
|
| - int GetVideoWidth(JNIEnv*, jobject obj) const;
|
| - int GetVideoHeight(JNIEnv*, jobject obj) const;
|
| - int GetDurationInMilliSeconds(JNIEnv*, jobject obj) const;
|
| - int GetCurrentPosition(JNIEnv*, jobject obj) const;
|
| bool IsPlaying(JNIEnv*, jobject obj);
|
| void RequestMediaMetadata(JNIEnv*, jobject obj);
|
|
|
| @@ -53,11 +49,6 @@ class ContentVideoView {
|
| // as we are quitting the app.
|
| void ExitFullscreen(JNIEnv*, jobject, jboolean release_media_player);
|
|
|
| - // Media control method called by the Java class.
|
| - void SeekTo(JNIEnv*, jobject obj, jint msec);
|
| - void Play(JNIEnv*, jobject obj);
|
| - void Pause(JNIEnv*, jobject obj);
|
| -
|
| // Called by the Java class to pass the surface object to the player.
|
| void SetSurface(JNIEnv*, jobject obj, jobject surface);
|
|
|
|
|