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

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: Android ifx 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 8cfbee970f12d58623f529a2b85c4b2d02c0be31..72ed7888f1b36971b8f6bca169bfcdd00338569e 100644
--- a/apps/launcher.cc
+++ b/apps/launcher.cc
@@ -411,9 +411,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