| 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 <jni.h> | 8 #include <jni.h> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "ui/gfx/rect_f.h" | 38 #include "ui/gfx/rect_f.h" |
| 39 | 39 |
| 40 namespace base { | 40 namespace base { |
| 41 class SingleThreadTaskRunner; | 41 class SingleThreadTaskRunner; |
| 42 } | 42 } |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 class WebContentDecryptionModule; | 45 class WebContentDecryptionModule; |
| 46 class WebContentDecryptionModuleResult; | 46 class WebContentDecryptionModuleResult; |
| 47 class WebFrame; | 47 class WebFrame; |
| 48 class WebMediaPlayerClient; |
| 48 class WebURL; | 49 class WebURL; |
| 49 } | 50 } |
| 50 | 51 |
| 51 namespace cc_blink { | 52 namespace cc_blink { |
| 52 class WebLayerImpl; | 53 class WebLayerImpl; |
| 53 } | 54 } |
| 54 | 55 |
| 55 namespace gpu { | 56 namespace gpu { |
| 56 struct MailboxHolder; | 57 struct MailboxHolder; |
| 57 } | 58 } |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 | 500 |
| 500 // NOTE: Weak pointers must be invalidated before all other member variables. | 501 // NOTE: Weak pointers must be invalidated before all other member variables. |
| 501 base::WeakPtrFactory<WebMediaPlayerAndroid> weak_factory_; | 502 base::WeakPtrFactory<WebMediaPlayerAndroid> weak_factory_; |
| 502 | 503 |
| 503 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerAndroid); | 504 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerAndroid); |
| 504 }; | 505 }; |
| 505 | 506 |
| 506 } // namespace content | 507 } // namespace content |
| 507 | 508 |
| 508 #endif // CONTENT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_ANDROID_H_ | 509 #endif // CONTENT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_ANDROID_H_ |
| OLD | NEW |