Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Unified Diff: chrome/browser/diagnostics/diagnostics_controller_unittest.cc

Issue 819133004: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/diagnostics/diagnostics_controller_unittest.cc
diff --git a/chrome/browser/diagnostics/diagnostics_controller_unittest.cc b/chrome/browser/diagnostics/diagnostics_controller_unittest.cc
index 617cc4e2590cabbc32076c44e149180cd95aa63c..9a349fc567b8d80b06702f579b2c85b6a6d5dff9 100644
--- a/chrome/browser/diagnostics/diagnostics_controller_unittest.cc
+++ b/chrome/browser/diagnostics/diagnostics_controller_unittest.cc
@@ -24,7 +24,7 @@ namespace diagnostics {
// run a test in.
class DiagnosticsControllerTest : public testing::Test {
protected:
- DiagnosticsControllerTest() : cmdline_(CommandLine::NO_PROGRAM) {}
+ DiagnosticsControllerTest() : cmdline_(base::CommandLine::NO_PROGRAM) {}
~DiagnosticsControllerTest() override {}
@@ -45,7 +45,7 @@ class DiagnosticsControllerTest : public testing::Test {
PathService::Override(base::DIR_HOME, profile_dir_);
#endif
- cmdline_ = CommandLine(CommandLine::NO_PROGRAM);
+ cmdline_ = base::CommandLine(base::CommandLine::NO_PROGRAM);
cmdline_.AppendSwitchPath(switches::kUserDataDir, profile_dir_);
cmdline_.AppendSwitch(switches::kDiagnostics);
cmdline_.AppendSwitch(switches::kDiagnosticsRecovery);
@@ -70,7 +70,7 @@ class DiagnosticsControllerTest : public testing::Test {
}
scoped_ptr<DiagnosticsModel> model_;
- CommandLine cmdline_;
+ base::CommandLine cmdline_;
base::ScopedTempDir temp_dir_;
scoped_ptr<DiagnosticsWriter> writer_;
base::FilePath profile_dir_;
« no previous file with comments | « chrome/browser/diagnostics/diagnostics_controller.cc ('k') | chrome/browser/diagnostics/diagnostics_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698