| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ANDROID_WEBVIEW_NATIVE_EXTERNAL_VIDEO_SURFACE_CONTAINER_IMPL_H_ | 5 #ifndef ANDROID_WEBVIEW_NATIVE_EXTERNAL_VIDEO_SURFACE_CONTAINER_IMPL_H_ |
| 6 #define ANDROID_WEBVIEW_NATIVE_EXTERNAL_VIDEO_SURFACE_CONTAINER_IMPL_H_ | 6 #define ANDROID_WEBVIEW_NATIVE_EXTERNAL_VIDEO_SURFACE_CONTAINER_IMPL_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 | 9 |
| 10 #include "base/android/scoped_java_ref.h" | 10 #include "base/android/scoped_java_ref.h" |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "content/public/browser/android/external_video_surface_container.h" | 13 #include "content/public/browser/android/external_video_surface_container.h" |
| 14 | 14 |
| 15 namespace android_webview { | 15 namespace android_webview { |
| 16 | 16 |
| 17 class ExternalVideoSurfaceContainerImpl | 17 class ExternalVideoSurfaceContainerImpl |
| 18 : public content::ExternalVideoSurfaceContainer { | 18 : public content::ExternalVideoSurfaceContainer { |
| 19 public: | 19 public: |
| 20 typedef base::Callback<void(int, jobject)> SurfaceCreatedCB; | 20 typedef base::Callback<void(int, jobject)> SurfaceCreatedCB; |
| 21 typedef base::Callback<void(int)> SurfaceDestroyedCB; | 21 typedef base::Callback<void(int)> SurfaceDestroyedCB; |
| 22 | 22 |
| 23 ExternalVideoSurfaceContainerImpl(content::WebContents* contents); | 23 ExternalVideoSurfaceContainerImpl(content::WebContents* contents); |
| 24 | 24 |
| 25 // ExternalVideoSurfaceContainer implementation. | 25 // ExternalVideoSurfaceContainer implementation. |
| 26 virtual void RequestExternalVideoSurface( | 26 virtual void RequestExternalVideoSurface( |
| 27 int player_id, | 27 int player_id, |
| 28 const SurfaceCreatedCB& surface_created_cb, | 28 const SurfaceCreatedCB& surface_created_cb, |
| 29 const SurfaceDestroyedCB& surface_destroyed_cb) OVERRIDE; | 29 const SurfaceDestroyedCB& surface_destroyed_cb) override; |
| 30 virtual void ReleaseExternalVideoSurface(int player_id) OVERRIDE; | 30 virtual void ReleaseExternalVideoSurface(int player_id) override; |
| 31 virtual void OnFrameInfoUpdated() OVERRIDE; | 31 virtual void OnFrameInfoUpdated() override; |
| 32 virtual void OnExternalVideoSurfacePositionChanged( | 32 virtual void OnExternalVideoSurfacePositionChanged( |
| 33 int player_id, const gfx::RectF& rect) OVERRIDE; | 33 int player_id, const gfx::RectF& rect) override; |
| 34 | 34 |
| 35 // Methods called from Java. | 35 // Methods called from Java. |
| 36 void SurfaceCreated( | 36 void SurfaceCreated( |
| 37 JNIEnv* env, jobject obj, jint player_id, jobject jsurface); | 37 JNIEnv* env, jobject obj, jint player_id, jobject jsurface); |
| 38 void SurfaceDestroyed(JNIEnv* env, jobject obj, jint player_id); | 38 void SurfaceDestroyed(JNIEnv* env, jobject obj, jint player_id); |
| 39 | 39 |
| 40 private: | 40 private: |
| 41 virtual ~ExternalVideoSurfaceContainerImpl(); | 41 virtual ~ExternalVideoSurfaceContainerImpl(); |
| 42 | 42 |
| 43 base::android::ScopedJavaGlobalRef<jobject> jobject_; | 43 base::android::ScopedJavaGlobalRef<jobject> jobject_; |
| 44 | 44 |
| 45 SurfaceCreatedCB surface_created_cb_; | 45 SurfaceCreatedCB surface_created_cb_; |
| 46 SurfaceDestroyedCB surface_destroyed_cb_; | 46 SurfaceDestroyedCB surface_destroyed_cb_; |
| 47 | 47 |
| 48 DISALLOW_COPY_AND_ASSIGN(ExternalVideoSurfaceContainerImpl); | 48 DISALLOW_COPY_AND_ASSIGN(ExternalVideoSurfaceContainerImpl); |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 bool RegisterExternalVideoSurfaceContainer(JNIEnv* env); | 51 bool RegisterExternalVideoSurfaceContainer(JNIEnv* env); |
| 52 | 52 |
| 53 } // namespace android_webview | 53 } // namespace android_webview |
| 54 | 54 |
| 55 #endif // ANDROID_WEBVIEW_NATIVE_EXTERNAL_VIDEO_SURFACE_CONTAINER_IMPL_H_ | 55 #endif // ANDROID_WEBVIEW_NATIVE_EXTERNAL_VIDEO_SURFACE_CONTAINER_IMPL_H_ |
| OLD | NEW |