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

Unified Diff: content/public/browser/presentation_session.cc

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
« no previous file with comments | « content/public/browser/presentation_session.h ('k') | content/renderer/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/presentation_session.cc
diff --git a/content/public/browser/presentation_session.cc b/content/public/browser/presentation_session.cc
index ceca42d9f895fd37093852e491022a92650c13af..61dbf3127dc4eac65eb49240ad826e23986d68a2 100644
--- a/content/public/browser/presentation_session.cc
+++ b/content/public/browser/presentation_session.cc
@@ -9,7 +9,15 @@ namespace content {
PresentationSessionInfo::PresentationSessionInfo(
const GURL& presentation_url,
const std::string& presentation_id)
- : presentation_url(presentation_url), presentation_id(presentation_id) {}
+ : PresentationSessionInfo(presentation_url, presentation_id, false) {}
+
+PresentationSessionInfo::PresentationSessionInfo(
+ const GURL& presentation_url,
+ const std::string& presentation_id,
+ bool is_offscreen)
+ : presentation_url(presentation_url),
+ presentation_id(presentation_id),
+ is_offscreen(is_offscreen) {}
PresentationSessionInfo::~PresentationSessionInfo() {
}
« no previous file with comments | « content/public/browser/presentation_session.h ('k') | content/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698