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

Unified Diff: Source/modules/presentation/PresentationController.h

Issue 940503002: [PresentationAPI] Added plumbing for start/joinSession from JS to platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed comment Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/presentation/PresentationController.h
diff --git a/Source/modules/presentation/PresentationController.h b/Source/modules/presentation/PresentationController.h
index 1d4c7b957f4eb477d75b03f0c8345a060c526876..ac5879ecae4052a942ff1faa58c77517130e186c 100644
--- a/Source/modules/presentation/PresentationController.h
+++ b/Source/modules/presentation/PresentationController.h
@@ -9,12 +9,12 @@
#include "modules/presentation/Presentation.h"
#include "platform/Supplementable.h"
#include "platform/heap/Handle.h"
+#include "public/platform/modules/presentation/WebPresentationClient.h"
mlamouri (slow - plz ping) 2015/02/25 20:51:06 Why do you now need to #include instead of fwd dec
whywhat 2015/02/25 21:04:14 That's where WebPresentationSessionClientCallbacks
#include "public/platform/modules/presentation/WebPresentationController.h"
namespace blink {
class LocalFrame;
-class WebPresentationClient;
// The coordinator between the various page exposed properties and the content
// layer represented via |WebPresentationClient|.
@@ -46,6 +46,12 @@ public:
// |availablechange| event.
void updateAvailableChangeWatched(bool watched);
+ // Called when the frame wants to start a new presentation.
+ void startSession(const String& presentationUrl, const String& presentationId, WebPresentationSessionClientCallbacks*);
+
+ // Called when the frame wants to join an existing presentation.
+ void joinSession(const String& presentationUrl, const String& presentationId, WebPresentationSessionClientCallbacks*);
+
// Connects the |Presentation| object with this controller.
void setPresentation(Presentation*);

Powered by Google App Engine
This is Rietveld 408576698