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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 #if !defined(OS_ANDROID) | 183 #if !defined(OS_ANDROID) |
184 PinnedTabServiceFactory::GetInstance(); | 184 PinnedTabServiceFactory::GetInstance(); |
185 #endif | 185 #endif |
186 PluginPrefsFactory::GetInstance(); | 186 PluginPrefsFactory::GetInstance(); |
| 187 #if defined(ENABLE_PROTECTOR_SERVICE) |
187 protector::ProtectorServiceFactory::GetInstance(); | 188 protector::ProtectorServiceFactory::GetInstance(); |
| 189 #endif |
188 prerender::PrerenderManagerFactory::GetInstance(); | 190 prerender::PrerenderManagerFactory::GetInstance(); |
189 ProfileSyncServiceFactory::GetInstance(); | 191 ProfileSyncServiceFactory::GetInstance(); |
190 SessionServiceFactory::GetInstance(); | 192 SessionServiceFactory::GetInstance(); |
191 SigninManagerFactory::GetInstance(); | 193 SigninManagerFactory::GetInstance(); |
192 #if defined(ENABLE_INPUT_SPEECH) | 194 #if defined(ENABLE_INPUT_SPEECH) |
193 SpeechInputExtensionManager::InitializeFactory(); | 195 SpeechInputExtensionManager::InitializeFactory(); |
194 #endif | 196 #endif |
195 SpellCheckFactory::GetInstance(); | 197 SpellCheckFactory::GetInstance(); |
196 TabRestoreServiceFactory::GetInstance(); | 198 TabRestoreServiceFactory::GetInstance(); |
197 #if defined(ENABLE_THEMES) | 199 #if defined(ENABLE_THEMES) |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 } | 311 } |
310 | 312 |
311 result.append("\n /* Toplevel profile */\n"); | 313 result.append("\n /* Toplevel profile */\n"); |
312 result.append(" Profile [shape=box];\n"); | 314 result.append(" Profile [shape=box];\n"); |
313 | 315 |
314 result.append("}\n"); | 316 result.append("}\n"); |
315 return result; | 317 return result; |
316 } | 318 } |
317 | 319 |
318 #endif | 320 #endif |
OLD | NEW |