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

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

Issue 10626007: Move ExtensionSystem into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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
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 841ad171a77c19b10f9de2faa507fb506b05d3bd..ad1f15bf848340f2ed32e565973a6773974513df 100644
--- a/chrome/browser/sync/profile_sync_components_factory_impl.h
+++ b/chrome/browser/sync/profile_sync_components_factory_impl.h
@@ -14,9 +14,12 @@
#include "chrome/browser/webdata/web_data_service.h"
class CommandLine;
-class ExtensionSystem;
class Profile;
+namespace extensions {
+class ExtensionSystem;
+}
+
class ProfileSyncComponentsFactoryImpl : public ProfileSyncComponentsFactory {
public:
ProfileSyncComponentsFactoryImpl(Profile* profile,
@@ -66,7 +69,7 @@ class ProfileSyncComponentsFactoryImpl : public ProfileSyncComponentsFactory {
CommandLine* command_line_;
// Set on the UI thread (since ExtensionSystemFactory is non-threadsafe);
// accessed on both the UI and FILE threads in GetSyncableServiceForType.
- ExtensionSystem* extension_system_;
+ extensions::ExtensionSystem* extension_system_;
scoped_refptr<WebDataService> web_data_service_;
DISALLOW_COPY_AND_ASSIGN(ProfileSyncComponentsFactoryImpl);

Powered by Google App Engine
This is Rietveld 408576698