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

Unified Diff: chrome/browser/chrome_switches_browsertest.cc

Issue 2481923002: [WIP] make GURL::path() return a StringPiece (Closed)
Patch Set: thanks asan 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 | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/chromeos/app_mode/fake_cws.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_switches_browsertest.cc
diff --git a/chrome/browser/chrome_switches_browsertest.cc b/chrome/browser/chrome_switches_browsertest.cc
index a390a99ce8ff10272e0df0161772a10ab266ab61..46627b999f048e5a6afa10b8965d0640405939a3 100644
--- a/chrome/browser/chrome_switches_browsertest.cc
+++ b/chrome/browser/chrome_switches_browsertest.cc
@@ -36,7 +36,8 @@ class HostRulesTest : public InProcessBrowserTest {
IN_PROC_BROWSER_TEST_F(HostRulesTest, TestMap) {
// Go to the empty page using www.google.com as the host.
GURL local_url = embedded_test_server()->GetURL("/empty.html");
- GURL test_url(std::string("http://www.google.com") + local_url.path());
+ GURL test_url(std::string("http://www.google.com") +
+ local_url.path().as_string());
ui_test_utils::NavigateToURL(browser(), test_url);
std::string html;
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/chromeos/app_mode/fake_cws.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698