| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ | 6 #define CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 14 #include "content/common/media/media_player_messages_enums_android.h" | 14 #include "content/common/media/media_player_messages_enums_android.h" |
| 15 #include "content/public/renderer/render_view_observer.h" | 15 #include "content/public/renderer/render_view_observer.h" |
| 16 #include "media/base/android/media_player_android.h" | 16 #include "media/base/android/media_player_android.h" |
| 17 #include "media/base/media_keys.h" | 17 #include "media/base/media_keys.h" |
| 18 #include "url/gurl.h" | 18 #include "url/gurl.h" |
| 19 | 19 |
| 20 #if defined(GOOGLE_TV) | |
| 21 #include "ui/gfx/rect_f.h" | |
| 22 #endif | |
| 23 | |
| 24 namespace blink { | 20 namespace blink { |
| 25 class WebFrame; | 21 class WebFrame; |
| 26 } | 22 } |
| 27 | 23 |
| 28 namespace gfx { | 24 namespace gfx { |
| 29 class RectF; | 25 class RectF; |
| 30 } | 26 } |
| 31 | 27 |
| 32 namespace content { | 28 namespace content { |
| 33 | 29 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 182 |
| 187 // WebFrame of the fullscreen video. | 183 // WebFrame of the fullscreen video. |
| 188 blink::WebFrame* fullscreen_frame_; | 184 blink::WebFrame* fullscreen_frame_; |
| 189 | 185 |
| 190 DISALLOW_COPY_AND_ASSIGN(RendererMediaPlayerManager); | 186 DISALLOW_COPY_AND_ASSIGN(RendererMediaPlayerManager); |
| 191 }; | 187 }; |
| 192 | 188 |
| 193 } // namespace content | 189 } // namespace content |
| 194 | 190 |
| 195 #endif // CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ | 191 #endif // CONTENT_RENDERER_MEDIA_ANDROID_RENDERER_MEDIA_PLAYER_MANAGER_H_ |
| OLD | NEW |