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

Unified Diff: public/web/WebFrameClient.h

Issue 832263007: Added plumbing for the availablechange event from Blink to WebPresentationClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed Presentation API links Created 5 years, 11 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: public/web/WebFrameClient.h
diff --git a/public/web/WebFrameClient.h b/public/web/WebFrameClient.h
index 62641d2a76f6e397b5b148989bc3f621fb8c0ce5..f27601e53064de169739d1c5e51e8c9b620b14ed 100644
--- a/public/web/WebFrameClient.h
+++ b/public/web/WebFrameClient.h
@@ -75,6 +75,7 @@ class WebServiceWorkerProvider;
class WebSocketHandle;
class WebPlugin;
class WebPluginPlaceholder;
+class WebPresentationClient;
class WebPushClient;
class WebRTCPeerConnectionHandler;
class WebScreenOrientationClient;
@@ -333,6 +334,12 @@ public:
virtual WebPushClient* pushClient() { return 0; }
+ // Presentation API ----------------------------------------------------
+
+ // Used to access the embedder for the Presentation API.
+ virtual WebPresentationClient* presentationClient() { return 0; }
+
+
// Editing -------------------------------------------------------------
// These methods allow the client to intercept and overrule editing

Powered by Google App Engine
This is Rietveld 408576698