OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__ | 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__ |
6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__ | 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
13 #include "chrome/browser/sync/profile_sync_components_factory.h" | 12 #include "chrome/browser/sync/profile_sync_components_factory.h" |
14 #include "chrome/browser/webdata/web_data_service.h" | 13 #include "chrome/browser/webdata/web_data_service.h" |
15 | 14 |
16 class CommandLine; | 15 class CommandLine; |
17 class ExtensionSystem; | 16 class ExtensionSystem; |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 CommandLine* command_line_; | 65 CommandLine* command_line_; |
67 // Set on the UI thread (since ExtensionSystemFactory is non-threadsafe); | 66 // Set on the UI thread (since ExtensionSystemFactory is non-threadsafe); |
68 // accessed on both the UI and FILE threads in GetSyncableServiceForType. | 67 // accessed on both the UI and FILE threads in GetSyncableServiceForType. |
69 ExtensionSystem* extension_system_; | 68 ExtensionSystem* extension_system_; |
70 scoped_refptr<WebDataService> web_data_service_; | 69 scoped_refptr<WebDataService> web_data_service_; |
71 | 70 |
72 DISALLOW_COPY_AND_ASSIGN(ProfileSyncComponentsFactoryImpl); | 71 DISALLOW_COPY_AND_ASSIGN(ProfileSyncComponentsFactoryImpl); |
73 }; | 72 }; |
74 | 73 |
75 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__ | 74 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__ |
OLD | NEW |