| 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);
|
| };
|
|
|