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

Unified Diff: chrome/browser/diagnostics/diagnostics_model_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_model_unittest.cc
diff --git a/chrome/browser/diagnostics/diagnostics_model_unittest.cc b/chrome/browser/diagnostics/diagnostics_model_unittest.cc
index dd1ce5a3f09de3d6424de74267c6dcc42fefb1c2..d8404db9d85f5114d9213f4f28a02f4ad699a8c3 100644
--- a/chrome/browser/diagnostics/diagnostics_model_unittest.cc
+++ b/chrome/browser/diagnostics/diagnostics_model_unittest.cc
@@ -14,9 +14,7 @@ namespace diagnostics {
// Basic harness to acquire and release the Diagnostic model object.
class DiagnosticsModelTest : public testing::Test {
protected:
- DiagnosticsModelTest()
- : cmdline_(CommandLine::NO_PROGRAM) {
- }
+ DiagnosticsModelTest() : cmdline_(base::CommandLine::NO_PROGRAM) {}
~DiagnosticsModelTest() override {}
@@ -28,7 +26,7 @@ class DiagnosticsModelTest : public testing::Test {
void TearDown() override { model_.reset(); }
scoped_ptr<DiagnosticsModel> model_;
- CommandLine cmdline_;
+ base::CommandLine cmdline_;
DISALLOW_COPY_AND_ASSIGN(DiagnosticsModelTest);
};

Powered by Google App Engine
This is Rietveld 408576698