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 #ifndef WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_ | 5 #ifndef WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_ |
6 #define WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_ | 6 #define WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include <jni.h> | 10 #include <jni.h> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" |
| 15 #include "third_party/WebKit/Source/Platform/chromium/public/WebURL.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayer.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayer.h" |
15 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h" | |
16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h" | |
17 #include "webkit/media/android/webmediaplayer_android.h" | 17 #include "webkit/media/android/webmediaplayer_android.h" |
18 | 18 |
19 namespace WebKit { | 19 namespace WebKit { |
20 class WebFrame; | 20 class WebFrame; |
21 } | 21 } |
22 | 22 |
23 namespace webkit_media { | 23 namespace webkit_media { |
24 | 24 |
25 class StreamTextureFactory; | 25 class StreamTextureFactory; |
26 class WebMediaPlayerManagerAndroid; | 26 class WebMediaPlayerManagerAndroid; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 // process, it will regularly update the |current_time_| by calling | 80 // process, it will regularly update the |current_time_| by calling |
81 // OnTimeUpdate(). | 81 // OnTimeUpdate(). |
82 float current_time_; | 82 float current_time_; |
83 | 83 |
84 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImplAndroid); | 84 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerImplAndroid); |
85 }; | 85 }; |
86 | 86 |
87 } // namespace webkit_media | 87 } // namespace webkit_media |
88 | 88 |
89 #endif // WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_ | 89 #endif // WEBKIT_MEDIA_ANDROID_WEBMEDIAPLAYER_IMPL_ANDROID_H_ |
OLD | NEW |