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

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: rebase with master and resolve merge conflicts Created 4 years, 2 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: 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 5a7d976f5280c3a2f7f4efb145121f7ceac6146b..6d179d99106078ea1c388bb5ed72191ef9b5a91d 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 {
Connected = 0,
Closed,
@@ -26,6 +28,7 @@ class WebPresentationConnectionClient {
virtual WebString getId() = 0;
virtual WebURL getUrl() = 0;
+ virtual std::unique_ptr<WebPresentationConnectionProxy> getProxy() = 0;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698