diff options
author | kkosztyo.u-szeged <kkosztyo.u-szeged@partner.samsung.com> | 2014-12-04 01:54:36 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-04 09:55:03 +0000 |
commit | b33617cb4d1eacfec6f06cc8dc42d096e236edd7 (patch) | |
tree | 349d8c9140984d379b45e30476805493668ae140 /components/nacl/browser/nacl_broker_host_win.cc | |
parent | e69fcbd9b7ce482380eb70f987a2020c46f65001 (diff) | |
download | chromium_src-b33617cb4d1eacfec6f06cc8dc42d096e236edd7.zip chromium_src-b33617cb4d1eacfec6f06cc8dc42d096e236edd7.tar.gz chromium_src-b33617cb4d1eacfec6f06cc8dc42d096e236edd7.tar.bz2 |
Prefix CommandLine usage with base namespace (Part 9: components)
Prefix all CommandLine usage in the components/ directory's following subdirectories:
feedback, gcm_driver, google, infobars, invalidation, keyed_service, metrics, nacl,
omnibox and os_crypt with the base:: namespace
BUG=422426
Review URL: https://codereview.chromium.org/774933004
Cr-Commit-Position: refs/heads/master@{#306790}
Diffstat (limited to 'components/nacl/browser/nacl_broker_host_win.cc')
-rw-r--r-- | components/nacl/browser/nacl_broker_host_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/nacl/browser/nacl_broker_host_win.cc b/components/nacl/browser/nacl_broker_host_win.cc index 1967b68..a8c5350 100644 --- a/components/nacl/browser/nacl_broker_host_win.cc +++ b/components/nacl/browser/nacl_broker_host_win.cc @@ -57,7 +57,7 @@ bool NaClBrokerHost::Init() { if (!NaClBrowser::GetInstance()->GetNaCl64ExePath(&nacl_path)) return false; - CommandLine* cmd_line = new CommandLine(nacl_path); + base::CommandLine* cmd_line = new base::CommandLine(nacl_path); CopyNaClCommandLineArguments(cmd_line); cmd_line->AppendSwitchASCII(switches::kProcessType, |