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

Unified Diff: third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h

Issue 2379703002: [Presentation API] (alternative) 1-UA: send message between controller and receiver page (Closed)
Patch Set: merge with master Created 4 years, 1 month 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: third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h
diff --git a/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h b/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h
index 0ad0419d1045870f8e17c005c110ba78fe82c0f9..82a29f5df9bab31e322eab78f33076e6992c086a 100644
--- a/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h
+++ b/third_party/WebKit/public/platform/modules/presentation/WebPresentationConnectionClient.h
@@ -10,6 +10,8 @@
namespace blink {
+class WebPresentationConnectionProxy;
+
enum class WebPresentationConnectionState {
Connecting = 0,
Connected,
@@ -27,6 +29,7 @@ class WebPresentationConnectionClient {
virtual WebString getId() = 0;
virtual WebURL getUrl() = 0;
+ virtual std::unique_ptr<WebPresentationConnectionProxy> takeProxy() = 0;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698