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

Unified Diff: apps/launcher.cc

Issue 325443002: Move about://-related constants from //content to //url (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
Index: apps/launcher.cc
diff --git a/apps/launcher.cc b/apps/launcher.cc
index f357881ce96de18b4c9ab8848b9391e552245a7e..13bd96b3627f4d4ee3ad9f776d355e12b3b2aa90 100644
--- a/apps/launcher.cc
+++ b/apps/launcher.cc
@@ -333,9 +333,9 @@ void LaunchPlatformAppWithCommandLine(Profile* profile,
#if defined(OS_WIN)
base::CommandLine::StringType about_blank_url(
- base::ASCIIToWide(content::kAboutBlankURL));
+ base::ASCIIToWide(url::kAboutBlankURL));
#else
- base::CommandLine::StringType about_blank_url(content::kAboutBlankURL);
+ base::CommandLine::StringType about_blank_url(url::kAboutBlankURL);
#endif
CommandLine::StringVector args = command_line.GetArgs();
// Browser tests will add about:blank to the command line. This should

Powered by Google App Engine
This is Rietveld 408576698