| 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 19 matching lines...) Expand all Loading... |
| 30 #include "third_party/WebKit/public/platform/WebSetSinkIdCallbacks.h" | 30 #include "third_party/WebKit/public/platform/WebSetSinkIdCallbacks.h" |
| 31 #include "third_party/WebKit/public/platform/WebSize.h" | 31 #include "third_party/WebKit/public/platform/WebSize.h" |
| 32 #include "third_party/WebKit/public/platform/WebURL.h" | 32 #include "third_party/WebKit/public/platform/WebURL.h" |
| 33 #include "ui/gfx/geometry/rect_f.h" | 33 #include "ui/gfx/geometry/rect_f.h" |
| 34 | 34 |
| 35 namespace base { | 35 namespace base { |
| 36 class SingleThreadTaskRunner; | 36 class SingleThreadTaskRunner; |
| 37 } | 37 } |
| 38 | 38 |
| 39 namespace blink { | 39 namespace blink { |
| 40 class WebContentDecryptionModule; | |
| 41 class WebFrame; | 40 class WebFrame; |
| 42 class WebMediaPlayerClient; | 41 class WebMediaPlayerClient; |
| 43 class WebMediaPlayerEncryptedMediaClient; | 42 class WebMediaPlayerEncryptedMediaClient; |
| 44 class WebURL; | 43 class WebURL; |
| 45 enum class WebRemotePlaybackAvailability; | 44 enum class WebRemotePlaybackAvailability; |
| 46 } | 45 } |
| 47 | 46 |
| 48 namespace cc_blink { | 47 namespace cc_blink { |
| 49 class WebLayerImpl; | 48 class WebLayerImpl; |
| 50 } | 49 } |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 | 426 |
| 428 // NOTE: Weak pointers must be invalidated before all other member variables. | 427 // NOTE: Weak pointers must be invalidated before all other member variables. |
| 429 base::WeakPtrFactory<WebMediaPlayerAndroid> weak_factory_; | 428 base::WeakPtrFactory<WebMediaPlayerAndroid> weak_factory_; |
| 430 | 429 |
| 431 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerAndroid); | 430 DISALLOW_COPY_AND_ASSIGN(WebMediaPlayerAndroid); |
| 432 }; | 431 }; |
| 433 | 432 |
| 434 } // namespace content | 433 } // namespace content |
| 435 | 434 |
| 436 #endif // CONTENT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_ANDROID_H_ | 435 #endif // CONTENT_RENDERER_MEDIA_ANDROID_WEBMEDIAPLAYER_ANDROID_H_ |
| OLD | NEW |