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

Unified Diff: content/renderer/presentation/presentation_session_client.cc

Issue 1084293004: [PresentationAPI] Added on-session-message handler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 8 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
« no previous file with comments | « content/renderer/presentation/presentation_session_client.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/presentation/presentation_session_client.cc
diff --git a/content/renderer/presentation/presentation_session_client.cc b/content/renderer/presentation/presentation_session_client.cc
index 62b28527c29e816ecbeca8700f684b8f7bfbf5ae..be8c754d8946ad6f9aea479c4104aed094369fe6 100644
--- a/content/renderer/presentation/presentation_session_client.cc
+++ b/content/renderer/presentation/presentation_session_client.cc
@@ -15,6 +15,12 @@ PresentationSessionClient::PresentationSessionClient(
id_(blink::WebString::fromUTF8(session_info->id)) {
}
+PresentationSessionClient::PresentationSessionClient(const mojo::String& url,
+ const mojo::String& id)
+ : url_(blink::WebString::fromUTF8(url)),
+ id_(blink::WebString::fromUTF8(id)) {
+}
+
PresentationSessionClient::~PresentationSessionClient() {
}
« no previous file with comments | « content/renderer/presentation/presentation_session_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698