| 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_WEBMEDIAPLAYER_ANDROID_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_ANDROID_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_ANDROID_H_ | 6 #define CONTENT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_ANDROID_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 } | 50 } |
| 51 | 51 |
| 52 namespace gpu { | 52 namespace gpu { |
| 53 namespace gles2 { | 53 namespace gles2 { |
| 54 class GLES2Interface; | 54 class GLES2Interface; |
| 55 } | 55 } |
| 56 struct MailboxHolder; | 56 struct MailboxHolder; |
| 57 } | 57 } |
| 58 | 58 |
| 59 namespace media { | 59 namespace media { |
| 60 class CdmContext; | |
| 61 class MediaLog; | 60 class MediaLog; |
| 62 class WebContentDecryptionModuleImpl; | 61 class WebContentDecryptionModuleImpl; |
| 63 } | 62 } |
| 64 | 63 |
| 65 namespace content { | 64 namespace content { |
| 66 | 65 |
| 67 class RendererMediaPlayerManager; | 66 class RendererMediaPlayerManager; |
| 68 | 67 |
| 69 // This class implements blink::WebMediaPlayer by keeping the android | 68 // This class implements blink::WebMediaPlayer by keeping the android |
| 70 // media player in the browser process. It listens to all the status changes | 69 // media player in the browser process. It listens to all the status changes |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 | 440 |
| 442 // NOTE: Weak pointers must be invalidated before all other member variables. | 441 // NOTE: Weak pointers must be invalidated before all other member variables. |
| 443 base::WeakPtrFactory<WebMediaPlayerAndroid> weak_factory_; | 442 base::WeakPtrFactory<WebMediaPlayerAndroid> weak_factory_; |
| 444 | 443 |
| 445 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerAndroid); | 444 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerAndroid); |
| 446 }; | 445 }; |
| 447 | 446 |
| 448 } // namespace content | 447 } // namespace content |
| 449 | 448 |
| 450 #endif // CONTENT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_ANDROID_H_ | 449 #endif // CONTENT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_ANDROID_H_ |
| OLD | NEW |