| 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" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 public: | 39 public: |
| 40 explicit PresentationReceiver(LocalFrame*, WebPresentationClient*); | 40 explicit PresentationReceiver(LocalFrame*, WebPresentationClient*); |
| 41 ~PresentationReceiver() = default; | 41 ~PresentationReceiver() = default; |
| 42 | 42 |
| 43 // PresentationReceiver.idl implementation | 43 // PresentationReceiver.idl implementation |
| 44 ScriptPromise connectionList(ScriptState*); | 44 ScriptPromise connectionList(ScriptState*); |
| 45 | 45 |
| 46 // Implementation of WebPresentationController. | 46 // Implementation of WebPresentationController. |
| 47 WebPresentationConnection* onReceiverConnectionAvailable( | 47 WebPresentationConnection* onReceiverConnectionAvailable( |
| 48 const WebPresentationSessionInfo&) override; | 48 const WebPresentationSessionInfo&) override; |
| 49 void didChangeSessionState(WebPresentationConnectionState) override; |
| 50 void terminateConnection() override; |
| 51 |
| 49 void registerConnection(PresentationConnection*); | 52 void registerConnection(PresentationConnection*); |
| 50 | 53 |
| 51 DECLARE_VIRTUAL_TRACE(); | 54 DECLARE_VIRTUAL_TRACE(); |
| 52 | 55 |
| 53 private: | 56 private: |
| 54 friend class PresentationReceiverTest; | 57 friend class PresentationReceiverTest; |
| 55 | 58 |
| 56 void recordOriginTypeAccess(Document*) const; | 59 void recordOriginTypeAccess(Document*) const; |
| 57 | 60 |
| 58 Member<ConnectionListProperty> m_connectionListProperty; | 61 Member<ConnectionListProperty> m_connectionListProperty; |
| 59 Member<PresentationConnectionList> m_connectionList; | 62 Member<PresentationConnectionList> m_connectionList; |
| 60 }; | 63 }; |
| 61 | 64 |
| 62 } // namespace blink | 65 } // namespace blink |
| 63 | 66 |
| 64 #endif // PresentationReceiver_h | 67 #endif // PresentationReceiver_h |
| OLD | NEW |