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 27 matching lines...) Expand all Loading... |
38 #include "chrome/browser/protector/protector_service_factory.h" | 38 #include "chrome/browser/protector/protector_service_factory.h" |
39 #include "chrome/browser/search_engines/template_url_fetcher_factory.h" | 39 #include "chrome/browser/search_engines/template_url_fetcher_factory.h" |
40 #include "chrome/browser/search_engines/template_url_service_factory.h" | 40 #include "chrome/browser/search_engines/template_url_service_factory.h" |
41 #include "chrome/browser/sessions/session_service_factory.h" | 41 #include "chrome/browser/sessions/session_service_factory.h" |
42 #include "chrome/browser/sessions/tab_restore_service_factory.h" | 42 #include "chrome/browser/sessions/tab_restore_service_factory.h" |
43 #include "chrome/browser/signin/signin_manager_factory.h" | 43 #include "chrome/browser/signin/signin_manager_factory.h" |
44 #include "chrome/browser/signin/token_service_factory.h" | 44 #include "chrome/browser/signin/token_service_factory.h" |
45 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h" | 45 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h" |
46 #include "chrome/browser/speech/speech_input_extension_manager.h" | 46 #include "chrome/browser/speech/speech_input_extension_manager.h" |
47 #include "chrome/browser/spellchecker/spellcheck_factory.h" | 47 #include "chrome/browser/spellchecker/spellcheck_factory.h" |
| 48 #if defined(OS_WIN) |
| 49 #include "chrome/browser/sync/credential_cache_service_factory_win.h" |
| 50 #endif // OS_WIN |
48 #include "chrome/browser/sync/profile_sync_service_factory.h" | 51 #include "chrome/browser/sync/profile_sync_service_factory.h" |
49 #include "chrome/browser/themes/theme_service_factory.h" | 52 #include "chrome/browser/themes/theme_service_factory.h" |
50 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" | 53 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" |
51 #include "chrome/browser/ui/global_error/global_error_service_factory.h" | 54 #include "chrome/browser/ui/global_error/global_error_service_factory.h" |
52 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" | 55 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" |
53 #include "chrome/browser/ui/webui/chrome_url_data_manager_factory.h" | 56 #include "chrome/browser/ui/webui/chrome_url_data_manager_factory.h" |
54 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" | 57 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" |
55 #include "chrome/browser/user_style_sheet_watcher_factory.h" | 58 #include "chrome/browser/user_style_sheet_watcher_factory.h" |
56 #include "chrome/browser/webdata/web_data_service_factory.h" | 59 #include "chrome/browser/webdata/web_data_service_factory.h" |
57 | 60 |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 #if defined(ENABLE_SESSION_SERVICE) | 246 #if defined(ENABLE_SESSION_SERVICE) |
244 SessionServiceFactory::GetInstance(); | 247 SessionServiceFactory::GetInstance(); |
245 #endif | 248 #endif |
246 ShortcutsBackendFactory::GetInstance(); | 249 ShortcutsBackendFactory::GetInstance(); |
247 SigninManagerFactory::GetInstance(); | 250 SigninManagerFactory::GetInstance(); |
248 #if defined(ENABLE_INPUT_SPEECH) | 251 #if defined(ENABLE_INPUT_SPEECH) |
249 SpeechInputExtensionManager::InitializeFactory(); | 252 SpeechInputExtensionManager::InitializeFactory(); |
250 ChromeSpeechRecognitionPreferences::InitializeFactory(); | 253 ChromeSpeechRecognitionPreferences::InitializeFactory(); |
251 #endif | 254 #endif |
252 SpellCheckFactory::GetInstance(); | 255 SpellCheckFactory::GetInstance(); |
| 256 #if defined(OS_WIN) |
| 257 syncer::CredentialCacheServiceFactory::GetInstance(); |
| 258 #endif // OS_WIN |
253 TabRestoreServiceFactory::GetInstance(); | 259 TabRestoreServiceFactory::GetInstance(); |
254 TemplateURLFetcherFactory::GetInstance(); | 260 TemplateURLFetcherFactory::GetInstance(); |
255 TemplateURLServiceFactory::GetInstance(); | 261 TemplateURLServiceFactory::GetInstance(); |
256 #if defined(ENABLE_THEMES) | 262 #if defined(ENABLE_THEMES) |
257 ThemeServiceFactory::GetInstance(); | 263 ThemeServiceFactory::GetInstance(); |
258 #endif | 264 #endif |
259 TokenServiceFactory::GetInstance(); | 265 TokenServiceFactory::GetInstance(); |
260 UserStyleSheetWatcherFactory::GetInstance(); | 266 UserStyleSheetWatcherFactory::GetInstance(); |
261 WebDataServiceFactory::GetInstance(); | 267 WebDataServiceFactory::GetInstance(); |
262 WebIntentsRegistryFactory::GetInstance(); | 268 WebIntentsRegistryFactory::GetInstance(); |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 } | 373 } |
368 | 374 |
369 result.append("\n /* Toplevel profile */\n"); | 375 result.append("\n /* Toplevel profile */\n"); |
370 result.append(" Profile [shape=box];\n"); | 376 result.append(" Profile [shape=box];\n"); |
371 | 377 |
372 result.append("}\n"); | 378 result.append("}\n"); |
373 return result; | 379 return result; |
374 } | 380 } |
375 | 381 |
376 #endif | 382 #endif |
OLD | NEW |