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

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

Issue 2386633003: [Media Router] Convert MediaRouter to use GURL for presentation URLs. (Closed)
Patch Set: Respond to dcheng@ comment 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
« no previous file with comments | « content/public/browser/presentation_session.h ('k') | no next file » | 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 cf6111da59e929db41e2d759841c3ff6b01af69d..ceca42d9f895fd37093852e491022a92650c13af 100644
--- a/content/public/browser/presentation_session.cc
+++ b/content/public/browser/presentation_session.cc
@@ -7,11 +7,9 @@
namespace content {
PresentationSessionInfo::PresentationSessionInfo(
- const std::string& presentation_url,
+ const GURL& presentation_url,
const std::string& presentation_id)
- : presentation_url(presentation_url),
- presentation_id(presentation_id) {
-}
+ : presentation_url(presentation_url), presentation_id(presentation_id) {}
PresentationSessionInfo::~PresentationSessionInfo() {
}
« no previous file with comments | « content/public/browser/presentation_session.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698