diff options
author | avi <avi@chromium.org> | 2014-12-22 15:49:53 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-22 23:50:37 +0000 |
commit | 9ab037205876578d14c5686f491c37bab680eccb (patch) | |
tree | 0ab316d7023d4e6bc6243734f5407ac01a8a8f06 /extensions/shell/app | |
parent | fdb146cf261d909613a1d1b11e70d0ba96280ffe (diff) | |
download | chromium_src-9ab037205876578d14c5686f491c37bab680eccb.zip chromium_src-9ab037205876578d14c5686f491c37bab680eccb.tar.gz chromium_src-9ab037205876578d14c5686f491c37bab680eccb.tar.bz2 |
Make callers of CommandLine use it via the base:: namespace.
Covers courgette/, dbus/, device/, extensions/, gin/, google_apis/, and gpu/.
BUG=422426
TEST=none
TBR=ben@chromium.org
Review URL: https://codereview.chromium.org/819193002
Cr-Commit-Position: refs/heads/master@{#309490}
Diffstat (limited to 'extensions/shell/app')
-rw-r--r-- | extensions/shell/app/shell_main_delegate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/shell/app/shell_main_delegate.cc b/extensions/shell/app/shell_main_delegate.cc index 51390f9..fb762e9 100644 --- a/extensions/shell/app/shell_main_delegate.cc +++ b/extensions/shell/app/shell_main_delegate.cc @@ -99,7 +99,7 @@ bool ShellMainDelegate::BasicStartupComplete(int* exit_code) { void ShellMainDelegate::PreSandboxStartup() { std::string process_type = - CommandLine::ForCurrentProcess()->GetSwitchValueASCII( + base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII( switches::kProcessType); if (ProcessNeedsResourceBundle(process_type)) InitializeResourceBundle(); |