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

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

Issue 2471883002: [Presentation API] (1st) (1-UA) Add is_offscreen_presentation attribute to MediaRouter (Closed)
Patch Set: resolve code review comments from Mark 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: content/public/browser/presentation_session.h
diff --git a/content/public/browser/presentation_session.h b/content/public/browser/presentation_session.h
index 8e5eb54676d349921ea4872aa2c93fd359a0a9dd..11eaccff05f41beb3de57c508ab16b9f8711b3d4 100644
--- a/content/public/browser/presentation_session.h
+++ b/content/public/browser/presentation_session.h
@@ -32,11 +32,13 @@ enum PresentationConnectionCloseReason {
// browser actions or Presentation API.
struct CONTENT_EXPORT PresentationSessionInfo {
PresentationSessionInfo(const GURL& presentation_url,
- const std::string& presentation_id);
+ const std::string& presentation_id,
+ bool is_offscreen);
~PresentationSessionInfo();
const GURL presentation_url;
const std::string presentation_id;
+ const bool is_offscreen;
};
// Possible reasons why an attempt to create a presentation session failed.

Powered by Google App Engine
This is Rietveld 408576698