diff options
author | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-10 11:46:17 +0000 |
---|---|---|
committer | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-10 11:46:17 +0000 |
commit | 8e09c7af875d86eb8174c5fb5a12ddec9ac8c38e (patch) | |
tree | 0a680f2c9e86cd0c3152bbec6d9598a29e3b527d /apps/launcher.cc | |
parent | 073a4adbec38b7cc7d175e4b4b26d94832e0bcb1 (diff) | |
download | chromium_src-8e09c7af875d86eb8174c5fb5a12ddec9ac8c38e.zip chromium_src-8e09c7af875d86eb8174c5fb5a12ddec9ac8c38e.tar.gz chromium_src-8e09c7af875d86eb8174c5fb5a12ddec9ac8c38e.tar.bz2 |
Move about://-related constants from //content to //url
kAboutScheme and kAboutBlankURL are used in code shared by iOS, and are general
enough to live in //url instead of //content.
TBR=yoz,benm
Review URL: https://codereview.chromium.org/325443002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@275988 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'apps/launcher.cc')
-rw-r--r-- | apps/launcher.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/launcher.cc b/apps/launcher.cc index 8cfbee9..72ed788 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 |