Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: Source/modules/presentation/PresentationController.h

Issue 1220813009: Presentation API: cleanup leftovers from .getAvailability() changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@presentation-getavailability
Patch Set: rebase Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/modules/presentation/PresentationController.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/modules/presentation/PresentationController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698