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 WebCore { |
16 | 16 |
17 class ExecutionContext; | 17 class ExecutionContext; |
18 class MediaKeysClient; | 18 class MediaKeysClient; |
19 | 19 |
20 class MediaKeysController FINAL : public Supplement<Page> { | 20 class MediaKeysController FINAL : public NoBaseWillBeGarbageCollected<MediaKeysC ontroller>, public WillBeHeapSupplement<Page> { |
21 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MediaKeysController); | |
21 public: | 22 public: |
22 virtual ~MediaKeysController(); | |
haraken
2014/04/30 11:18:08
You can use DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOV
zerny-chromium
2014/04/30 11:46:53
ditto?
| |
23 | |
24 PassOwnPtr<blink::WebContentDecryptionModule> createContentDecryptionModule( ExecutionContext*, const String& keySystem); | 23 PassOwnPtr<blink::WebContentDecryptionModule> createContentDecryptionModule( ExecutionContext*, const String& keySystem); |
25 | 24 |
26 static void provideMediaKeysTo(Page&, MediaKeysClient*); | 25 static void provideMediaKeysTo(Page&, MediaKeysClient*); |
27 static MediaKeysController* from(Page* page) { return static_cast<MediaKeysC ontroller*>(Supplement<Page>::from(page, supplementName())); } | 26 static MediaKeysController* from(Page* page) { return static_cast<MediaKeysC ontroller*>(WillBeHeapSupplement<Page>::from(page, supplementName())); } |
28 | 27 |
29 virtual void trace(Visitor*) OVERRIDE { } | 28 virtual void trace(Visitor*) OVERRIDE { } |
30 | 29 |
31 private: | 30 private: |
32 explicit MediaKeysController(MediaKeysClient*); | 31 explicit MediaKeysController(MediaKeysClient*); |
33 static const char* supplementName(); | 32 static const char* supplementName(); |
34 MediaKeysClient* m_client; | 33 MediaKeysClient* m_client; |
35 }; | 34 }; |
36 | 35 |
37 } // namespace WebCore | 36 } // namespace WebCore |
38 | 37 |
39 #endif // MediaKeysController_h | 38 #endif // MediaKeysController_h |
40 | 39 |
OLD | NEW |