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 |