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

Unified Diff: chrome/browser/sync/profile_sync_components_factory_impl.h

Issue 196413016: Move CommandLine to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months 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
« no previous file with comments | « chrome/browser/shell_integration_linux.h ('k') | chrome/browser/sync/test/integration/migration_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/profile_sync_components_factory_impl.h
diff --git a/chrome/browser/sync/profile_sync_components_factory_impl.h b/chrome/browser/sync/profile_sync_components_factory_impl.h
index ee9d9f591615406c26881e2f2585a11fdf316d2c..ec413521db17d695135c868958c4927d0e769e33 100644
--- a/chrome/browser/sync/profile_sync_components_factory_impl.h
+++ b/chrome/browser/sync/profile_sync_components_factory_impl.h
@@ -12,9 +12,11 @@
#include "chrome/browser/sync/profile_sync_components_factory.h"
#include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
+class Profile;
+namespace base {
class CommandLine;
-class Profile;
+}
namespace extensions {
class ExtensionSystem;
@@ -23,7 +25,7 @@ class ExtensionSystem;
class ProfileSyncComponentsFactoryImpl : public ProfileSyncComponentsFactory {
public:
ProfileSyncComponentsFactoryImpl(Profile* profile,
- CommandLine* command_line);
+ base::CommandLine* command_line);
virtual ~ProfileSyncComponentsFactoryImpl();
virtual void RegisterDataTypes(ProfileSyncService* pss) OVERRIDE;
@@ -74,7 +76,7 @@ class ProfileSyncComponentsFactoryImpl : public ProfileSyncComponentsFactory {
void RegisterCommonDataTypes(ProfileSyncService* pss);
Profile* profile_;
- CommandLine* command_line_;
+ base::CommandLine* command_line_;
// Set on the UI thread (since extensions::ExtensionSystemFactory is
// non-threadsafe); accessed on both the UI and FILE threads in
// GetSyncableServiceForType.
« no previous file with comments | « chrome/browser/shell_integration_linux.h ('k') | chrome/browser/sync/test/integration/migration_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698