OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "webkit/media/android/webmediaplayer_android.h" | 5 #include "webkit/media/android/webmediaplayer_android.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
12 #include "cc/layers/video_layer.h" | 12 #include "cc/layers/video_layer.h" |
13 #include "gpu/GLES2/gl2extchromium.h" | 13 #include "gpu/GLES2/gl2extchromium.h" |
14 #include "media/base/android/media_player_android.h" | 14 #include "media/base/android/media_player_android.h" |
15 #include "media/base/media_switches.h" | 15 #include "media/base/media_switches.h" |
16 #include "media/base/video_frame.h" | 16 #include "media/base/video_frame.h" |
17 #include "net/base/mime_util.h" | 17 #include "net/base/mime_util.h" |
18 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" | 18 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" |
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerClient.
h" | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerClient.
h" |
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaSource.h" | 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaSource.h" |
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" |
24 #include "webkit/compositor_bindings/web_layer_impl.h" | |
25 #include "webkit/media/android/webmediaplayer_manager_android.h" | 24 #include "webkit/media/android/webmediaplayer_manager_android.h" |
26 #include "webkit/media/android/webmediaplayer_proxy_android.h" | 25 #include "webkit/media/android/webmediaplayer_proxy_android.h" |
27 #include "webkit/media/webmediaplayer_util.h" | 26 #include "webkit/media/webmediaplayer_util.h" |
| 27 #include "webkit/renderer/compositor_bindings/web_layer_impl.h" |
28 | 28 |
29 #if defined(GOOGLE_TV) | 29 #if defined(GOOGLE_TV) |
30 #include "webkit/media/android/media_source_delegate.h" | 30 #include "webkit/media/android/media_source_delegate.h" |
31 #endif | 31 #endif |
32 | 32 |
33 static const uint32 kGLTextureExternalOES = 0x8D65; | 33 static const uint32 kGLTextureExternalOES = 0x8D65; |
34 | 34 |
35 using WebKit::WebMediaPlayer; | 35 using WebKit::WebMediaPlayer; |
36 using WebKit::WebMediaSource; | 36 using WebKit::WebMediaSource; |
37 using WebKit::WebSize; | 37 using WebKit::WebSize; |
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 void WebMediaPlayerAndroid::exitFullscreen() { | 709 void WebMediaPlayerAndroid::exitFullscreen() { |
710 if (proxy_) | 710 if (proxy_) |
711 proxy_->ExitFullscreen(player_id_); | 711 proxy_->ExitFullscreen(player_id_); |
712 } | 712 } |
713 | 713 |
714 bool WebMediaPlayerAndroid::canEnterFullscreen() const { | 714 bool WebMediaPlayerAndroid::canEnterFullscreen() const { |
715 return manager_->CanEnterFullscreen(frame_); | 715 return manager_->CanEnterFullscreen(frame_); |
716 } | 716 } |
717 | 717 |
718 } // namespace webkit_media | 718 } // namespace webkit_media |
OLD | NEW |