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 #include "chrome/browser/profiles/profile_dependency_manager.h" | 5 #include "chrome/browser/profiles/profile_dependency_manager.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <deque> | 8 #include <deque> |
9 #include <iterator> | 9 #include <iterator> |
10 | 10 |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 #endif | 175 #endif |
176 DownloadServiceFactory::GetInstance(); | 176 DownloadServiceFactory::GetInstance(); |
177 FindBarStateFactory::GetInstance(); | 177 FindBarStateFactory::GetInstance(); |
178 GlobalErrorServiceFactory::GetInstance(); | 178 GlobalErrorServiceFactory::GetInstance(); |
179 NetworkActionPredictorFactory::GetInstance(); | 179 NetworkActionPredictorFactory::GetInstance(); |
180 NTPResourceCacheFactory::GetInstance(); | 180 NTPResourceCacheFactory::GetInstance(); |
181 PasswordStoreFactory::GetInstance(); | 181 PasswordStoreFactory::GetInstance(); |
182 PersonalDataManagerFactory::GetInstance(); | 182 PersonalDataManagerFactory::GetInstance(); |
183 PinnedTabServiceFactory::GetInstance(); | 183 PinnedTabServiceFactory::GetInstance(); |
184 PluginPrefsFactory::GetInstance(); | 184 PluginPrefsFactory::GetInstance(); |
| 185 #if defined(ENABLE_PROTECTOR_SERVICE) |
185 protector::ProtectorServiceFactory::GetInstance(); | 186 protector::ProtectorServiceFactory::GetInstance(); |
| 187 #endif |
186 prerender::PrerenderManagerFactory::GetInstance(); | 188 prerender::PrerenderManagerFactory::GetInstance(); |
187 ProfileSyncServiceFactory::GetInstance(); | 189 ProfileSyncServiceFactory::GetInstance(); |
188 SessionServiceFactory::GetInstance(); | 190 SessionServiceFactory::GetInstance(); |
189 SigninManagerFactory::GetInstance(); | 191 SigninManagerFactory::GetInstance(); |
190 #if defined(ENABLE_INPUT_SPEECH) | 192 #if defined(ENABLE_INPUT_SPEECH) |
191 SpeechInputExtensionManager::InitializeFactory(); | 193 SpeechInputExtensionManager::InitializeFactory(); |
192 #endif | 194 #endif |
193 SpellCheckFactory::GetInstance(); | 195 SpellCheckFactory::GetInstance(); |
194 TabRestoreServiceFactory::GetInstance(); | 196 TabRestoreServiceFactory::GetInstance(); |
195 #if defined(ENABLE_THEMES) | 197 #if defined(ENABLE_THEMES) |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 } | 309 } |
308 | 310 |
309 result.append("\n /* Toplevel profile */\n"); | 311 result.append("\n /* Toplevel profile */\n"); |
310 result.append(" Profile [shape=box];\n"); | 312 result.append(" Profile [shape=box];\n"); |
311 | 313 |
312 result.append("}\n"); | 314 result.append("}\n"); |
313 return result; | 315 return result; |
314 } | 316 } |
315 | 317 |
316 #endif | 318 #endif |
OLD | NEW |