| 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_WEBMEDIAPLAYER_MS_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ | 6 #define CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 namespace blink { | 23 namespace blink { |
| 24 class WebFrame; | 24 class WebFrame; |
| 25 class WebMediaPlayerClient; | 25 class WebMediaPlayerClient; |
| 26 class WebSecurityOrigin; | 26 class WebSecurityOrigin; |
| 27 class WebString; | 27 class WebString; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace media { | 30 namespace media { |
| 31 class MediaLog; | 31 class MediaLog; |
| 32 class VideoFrame; | |
| 33 enum VideoRotation; | 32 enum VideoRotation; |
| 34 } | 33 } |
| 35 | 34 |
| 36 namespace cc_blink { | 35 namespace cc_blink { |
| 37 class WebLayerImpl; | 36 class WebLayerImpl; |
| 38 } | 37 } |
| 39 | 38 |
| 40 namespace gpu { | 39 namespace gpu { |
| 41 namespace gles2 { | 40 namespace gles2 { |
| 42 class GLES2Interface; | 41 class GLES2Interface; |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 // True if playback should be started upon the next call to OnShown(). Only | 239 // True if playback should be started upon the next call to OnShown(). Only |
| 241 // used on Android. | 240 // used on Android. |
| 242 bool should_play_upon_shown_; | 241 bool should_play_upon_shown_; |
| 243 | 242 |
| 244 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerMS); | 243 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerMS); |
| 245 }; | 244 }; |
| 246 | 245 |
| 247 } // namespace content | 246 } // namespace content |
| 248 | 247 |
| 249 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ | 248 #endif // CONTENT_RENDERER_MEDIA_WEBMEDIAPLAYER_MS_H_ |
| OLD | NEW |