diff options
author | avi <avi@chromium.org> | 2014-12-25 09:48:05 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-25 17:48:57 +0000 |
commit | 79bf913a9f95ff7249018d0e5179f61608cfb82b (patch) | |
tree | 02c8ababb843df5cdd00e4f8911e052486d256b3 /chrome/installer/tools | |
parent | c28b45c1f969a9da103062adb6b8d9789193ddb3 (diff) | |
download | chromium_src-79bf913a9f95ff7249018d0e5179f61608cfb82b.zip chromium_src-79bf913a9f95ff7249018d0e5179f61608cfb82b.tar.gz chromium_src-79bf913a9f95ff7249018d0e5179f61608cfb82b.tar.bz2 |
Make callers of CommandLine use it via the base:: namespace, and remove the global alias.
BUG=422426
TEST=none
TBR=ben@chromium.org
Review URL: https://codereview.chromium.org/812353003
Cr-Commit-Position: refs/heads/master@{#309644}
Diffstat (limited to 'chrome/installer/tools')
-rw-r--r-- | chrome/installer/tools/validate_installation_main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/tools/validate_installation_main.cc b/chrome/installer/tools/validate_installation_main.cc index dc95aaa..74f860c 100644 --- a/chrome/installer/tools/validate_installation_main.cc +++ b/chrome/installer/tools/validate_installation_main.cc @@ -165,7 +165,7 @@ int wmain(int argc, wchar_t *argv[]) { int result = EXIT_SUCCESS; base::AtExitManager exit_manager; - CommandLine::Init(0, NULL); + base::CommandLine::Init(0, NULL); ConsoleLogHelper log_helper; // Check user-level and system-level for products. |