| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 MediaKeysController_h | 5 #ifndef MediaKeysController_h |
| 6 #define MediaKeysController_h | 6 #define MediaKeysController_h |
| 7 | 7 |
| 8 #include "core/page/Page.h" | 8 #include "core/page/Page.h" |
| 9 #include "wtf/PassOwnPtr.h" | 9 #include "wtf/PassOwnPtr.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 class WebContentDecryptionModule; | 12 class WebContentDecryptionModule; |
| 13 } | 13 } |
| 14 | 14 |
| 15 namespace WebCore { | 15 namespace blink { |
| 16 | 16 |
| 17 class ExecutionContext; | 17 class ExecutionContext; |
| 18 class MediaKeysClient; | 18 class MediaKeysClient; |
| 19 | 19 |
| 20 class MediaKeysController FINAL : public NoBaseWillBeGarbageCollected<MediaKeysC
ontroller>, public WillBeHeapSupplement<Page> { | 20 class MediaKeysController FINAL : public NoBaseWillBeGarbageCollected<MediaKeysC
ontroller>, public WillBeHeapSupplement<Page> { |
| 21 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MediaKeysController); | 21 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MediaKeysController); |
| 22 public: | 22 public: |
| 23 PassOwnPtr<blink::WebContentDecryptionModule> createContentDecryptionModule(
ExecutionContext*, const String& keySystem); | 23 PassOwnPtr<blink::WebContentDecryptionModule> createContentDecryptionModule(
ExecutionContext*, const String& keySystem); |
| 24 | 24 |
| 25 static void provideMediaKeysTo(Page&, MediaKeysClient*); | 25 static void provideMediaKeysTo(Page&, MediaKeysClient*); |
| 26 static MediaKeysController* from(Page* page) { return static_cast<MediaKeysC
ontroller*>(WillBeHeapSupplement<Page>::from(page, supplementName())); } | 26 static MediaKeysController* from(Page* page) { return static_cast<MediaKeysC
ontroller*>(WillBeHeapSupplement<Page>::from(page, supplementName())); } |
| 27 | 27 |
| 28 virtual void trace(Visitor* visitor) OVERRIDE { WillBeHeapSupplement<Page>::
trace(visitor); } | 28 virtual void trace(Visitor* visitor) OVERRIDE { WillBeHeapSupplement<Page>::
trace(visitor); } |
| 29 | 29 |
| 30 private: | 30 private: |
| 31 explicit MediaKeysController(MediaKeysClient*); | 31 explicit MediaKeysController(MediaKeysClient*); |
| 32 static const char* supplementName(); | 32 static const char* supplementName(); |
| 33 MediaKeysClient* m_client; | 33 MediaKeysClient* m_client; |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 } // namespace WebCore | 36 } // namespace blink |
| 37 | 37 |
| 38 #endif // MediaKeysController_h | 38 #endif // MediaKeysController_h |
| 39 | 39 |
| OLD | NEW |