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 PresentationController_h | 5 #ifndef PresentationController_h |
6 #define PresentationController_h | 6 #define PresentationController_h |
7 | 7 |
8 #include "core/frame/LocalFrameLifecycleObserver.h" | 8 #include "core/frame/LocalFrameLifecycleObserver.h" |
9 #include "modules/ModulesExport.h" | 9 #include "modules/ModulesExport.h" |
10 #include "modules/presentation/Presentation.h" | 10 #include "modules/presentation/Presentation.h" |
(...skipping 27 matching lines...) Expand all Loading... |
38 static PresentationController* from(LocalFrame&); | 38 static PresentationController* from(LocalFrame&); |
39 | 39 |
40 static void provideTo(LocalFrame&, WebPresentationClient*); | 40 static void provideTo(LocalFrame&, WebPresentationClient*); |
41 | 41 |
42 WebPresentationClient* client(); | 42 WebPresentationClient* client(); |
43 | 43 |
44 // Implementation of HeapSupplement. | 44 // Implementation of HeapSupplement. |
45 DECLARE_VIRTUAL_TRACE(); | 45 DECLARE_VIRTUAL_TRACE(); |
46 | 46 |
47 // Implementation of WebPresentationController. | 47 // Implementation of WebPresentationController. |
48 virtual void didChangeAvailability(bool available) override; | |
49 virtual bool isAvailableChangeWatched() const override; | |
50 virtual void didStartDefaultSession(WebPresentationSessionClient*) override; | 48 virtual void didStartDefaultSession(WebPresentationSessionClient*) override; |
51 virtual void didChangeSessionState(WebPresentationSessionClient*, WebPresent
ationSessionState) override; | 49 virtual void didChangeSessionState(WebPresentationSessionClient*, WebPresent
ationSessionState) override; |
52 virtual void didReceiveSessionTextMessage(WebPresentationSessionClient*, con
st WebString&) override; | 50 virtual void didReceiveSessionTextMessage(WebPresentationSessionClient*, con
st WebString&) override; |
53 | 51 |
54 // Called when the frame wants to start a new presentation. | 52 // Called when the frame wants to start a new presentation. |
55 void startSession(const String& presentationUrl, const String& presentationI
d, WebPresentationSessionClientCallbacks*); | 53 void startSession(const String& presentationUrl, const String& presentationI
d, WebPresentationSessionClientCallbacks*); |
56 | 54 |
57 // Called when the frame wants to join an existing presentation. | 55 // Called when the frame wants to join an existing presentation. |
58 void joinSession(const String& presentationUrl, const String& presentationId
, WebPresentationSessionClientCallbacks*); | 56 void joinSession(const String& presentationUrl, const String& presentationId
, WebPresentationSessionClientCallbacks*); |
59 | 57 |
(...skipping 21 matching lines...) Expand all Loading... |
81 // Implementation of LocalFrameLifecycleObserver. | 79 // Implementation of LocalFrameLifecycleObserver. |
82 virtual void willDetachFrameHost() override; | 80 virtual void willDetachFrameHost() override; |
83 | 81 |
84 WebPresentationClient* m_client; | 82 WebPresentationClient* m_client; |
85 PersistentWillBeMember<Presentation> m_presentation; | 83 PersistentWillBeMember<Presentation> m_presentation; |
86 }; | 84 }; |
87 | 85 |
88 } // namespace blink | 86 } // namespace blink |
89 | 87 |
90 #endif // PresentationController_h | 88 #endif // PresentationController_h |
OLD | NEW |