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 CHROMECAST_SHELL_BROWSER_ANDROID_EXTERNAL_VIDEO_SURFACE_CONTAINER_IMPL_H
_ | 5 #ifndef CHROMECAST_BROWSER_ANDROID_EXTERNAL_VIDEO_SURFACE_CONTAINER_IMPL_H_ |
6 #define CHROMECAST_SHELL_BROWSER_ANDROID_EXTERNAL_VIDEO_SURFACE_CONTAINER_IMPL_H
_ | 6 #define CHROMECAST_BROWSER_ANDROID_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 chromecast { | 15 namespace chromecast { |
16 namespace shell { | 16 namespace shell { |
(...skipping 30 matching lines...) Expand all Loading... |
47 SurfaceDestroyedCB surface_destroyed_cb_; | 47 SurfaceDestroyedCB surface_destroyed_cb_; |
48 | 48 |
49 DISALLOW_COPY_AND_ASSIGN(ExternalVideoSurfaceContainerImpl); | 49 DISALLOW_COPY_AND_ASSIGN(ExternalVideoSurfaceContainerImpl); |
50 }; | 50 }; |
51 | 51 |
52 bool RegisterExternalVideoSurfaceContainer(JNIEnv* env); | 52 bool RegisterExternalVideoSurfaceContainer(JNIEnv* env); |
53 | 53 |
54 } // namespace shell | 54 } // namespace shell |
55 } // namespace chromecast | 55 } // namespace chromecast |
56 | 56 |
57 #endif // CHROMECAST_SHELL_BROWSER_ANDROID_EXTERNAL_VIDEO_SURFACE_CONTAINER_IMP
L_H_ | 57 #endif // CHROMECAST_BROWSER_ANDROID_EXTERNAL_VIDEO_SURFACE_CONTAINER_IMPL_H_ |
OLD | NEW |