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

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: resolve code review comments from Mark 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..d01c92be6dcf46561d8062095a460a5a53542b97 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 WebPresentationConnectionProxy* getOrCreateProxy() = 0;
imcheng 2016/10/12 02:22:55 Could you please document this method? Also, it l
zhaobin 2016/10/13 02:33:52 Added documents in presentation_connection_client.
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698