| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 PresentationReceiver_h | 5 #ifndef PresentationReceiver_h |
| 6 #define PresentationReceiver_h | 6 #define PresentationReceiver_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptPromise.h" | 8 #include "bindings/core/v8/ScriptPromise.h" |
| 9 #include "bindings/core/v8/ScriptPromiseProperty.h" | 9 #include "bindings/core/v8/ScriptPromiseProperty.h" |
| 10 #include "bindings/core/v8/ScriptWrappable.h" | 10 #include "bindings/core/v8/ScriptWrappable.h" |
| 11 #include "core/dom/ContextLifecycleObserver.h" |
| 11 #include "core/dom/DOMException.h" | 12 #include "core/dom/DOMException.h" |
| 12 #include "core/frame/DOMWindowProperty.h" | |
| 13 #include "modules/ModulesExport.h" | 13 #include "modules/ModulesExport.h" |
| 14 #include "platform/heap/Handle.h" | 14 #include "platform/heap/Handle.h" |
| 15 #include "platform/heap/Heap.h" | 15 #include "platform/heap/Heap.h" |
| 16 #include "public/platform/modules/presentation/WebPresentationReceiver.h" | 16 #include "public/platform/modules/presentation/WebPresentationReceiver.h" |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 | 19 |
| 20 class PresentationConnection; | 20 class PresentationConnection; |
| 21 class PresentationConnectionList; | 21 class PresentationConnectionList; |
| 22 class WebPresentationClient; | 22 class WebPresentationClient; |
| 23 class WebPresentationConnectionClient; | 23 class WebPresentationConnectionClient; |
| 24 | 24 |
| 25 // Implements the PresentationReceiver interface from the Presentation API from | 25 // Implements the PresentationReceiver interface from the Presentation API from |
| 26 // which websites can implement the receiving side of a presentation session. | 26 // which websites can implement the receiving side of a presentation session. |
| 27 class MODULES_EXPORT PresentationReceiver final | 27 class MODULES_EXPORT PresentationReceiver final |
| 28 : public GarbageCollectedFinalized<PresentationReceiver>, | 28 : public GarbageCollectedFinalized<PresentationReceiver>, |
| 29 public ScriptWrappable, | 29 public ScriptWrappable, |
| 30 public DOMWindowProperty, | 30 public ContextClient, |
| 31 public WebPresentationReceiver { | 31 public WebPresentationReceiver { |
| 32 USING_GARBAGE_COLLECTED_MIXIN(PresentationReceiver); | 32 USING_GARBAGE_COLLECTED_MIXIN(PresentationReceiver); |
| 33 DEFINE_WRAPPERTYPEINFO(); | 33 DEFINE_WRAPPERTYPEINFO(); |
| 34 using ConnectionListProperty = | 34 using ConnectionListProperty = |
| 35 ScriptPromiseProperty<Member<PresentationReceiver>, | 35 ScriptPromiseProperty<Member<PresentationReceiver>, |
| 36 Member<PresentationConnectionList>, | 36 Member<PresentationConnectionList>, |
| 37 Member<DOMException>>; | 37 Member<DOMException>>; |
| 38 | 38 |
| 39 public: | 39 public: |
| 40 explicit PresentationReceiver(LocalFrame*, WebPresentationClient*); | 40 explicit PresentationReceiver(LocalFrame*, WebPresentationClient*); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 52 private: | 52 private: |
| 53 friend class PresentationReceiverTest; | 53 friend class PresentationReceiverTest; |
| 54 | 54 |
| 55 Member<ConnectionListProperty> m_connectionListProperty; | 55 Member<ConnectionListProperty> m_connectionListProperty; |
| 56 Member<PresentationConnectionList> m_connectionList; | 56 Member<PresentationConnectionList> m_connectionList; |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 } // namespace blink | 59 } // namespace blink |
| 60 | 60 |
| 61 #endif // PresentationReceiver_h | 61 #endif // PresentationReceiver_h |
| OLD | NEW |