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

Unified Diff: chrome/browser/sync/profile_sync_components_factory_impl_unittest.cc

Issue 816403003: 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/sync/profile_sync_components_factory_impl_unittest.cc
diff --git a/chrome/browser/sync/profile_sync_components_factory_impl_unittest.cc b/chrome/browser/sync/profile_sync_components_factory_impl_unittest.cc
index a0337f2c8a3f79642956e25aa81c9cefa1b518d4..2ee465a37779c039ea15db9404401e4a859c73d2 100644
--- a/chrome/browser/sync/profile_sync_components_factory_impl_unittest.cc
+++ b/chrome/browser/sync/profile_sync_components_factory_impl_unittest.cc
@@ -34,7 +34,7 @@ class ProfileSyncComponentsFactoryImplTest : public testing::Test {
void SetUp() override {
profile_.reset(new TestingProfile());
base::FilePath program_path(FILE_PATH_LITERAL("chrome.exe"));
- command_line_.reset(new CommandLine(program_path));
+ command_line_.reset(new base::CommandLine(program_path));
scope_set_.insert(GaiaConstants::kChromeSyncOAuth2Scope);
}
@@ -127,7 +127,7 @@ class ProfileSyncComponentsFactoryImplTest : public testing::Test {
content::TestBrowserThreadBundle thread_bundle_;
scoped_ptr<Profile> profile_;
- scoped_ptr<CommandLine> command_line_;
+ scoped_ptr<base::CommandLine> command_line_;
OAuth2TokenService::ScopeSet scope_set_;
};
« no previous file with comments | « chrome/browser/sync/profile_sync_components_factory_impl.cc ('k') | chrome/browser/sync/profile_sync_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698