| 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 26 matching lines...) Expand all Loading... |
| 37 #include "chrome/browser/sessions/session_service_factory.h" | 37 #include "chrome/browser/sessions/session_service_factory.h" |
| 38 #include "chrome/browser/sessions/tab_restore_service_factory.h" | 38 #include "chrome/browser/sessions/tab_restore_service_factory.h" |
| 39 #include "chrome/browser/signin/signin_manager_factory.h" | 39 #include "chrome/browser/signin/signin_manager_factory.h" |
| 40 #include "chrome/browser/signin/token_service_factory.h" | 40 #include "chrome/browser/signin/token_service_factory.h" |
| 41 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h" | 41 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h" |
| 42 #include "chrome/browser/speech/speech_input_extension_manager.h" | 42 #include "chrome/browser/speech/speech_input_extension_manager.h" |
| 43 #include "chrome/browser/spellchecker/spellcheck_factory.h" | 43 #include "chrome/browser/spellchecker/spellcheck_factory.h" |
| 44 #include "chrome/browser/sync/profile_sync_service_factory.h" | 44 #include "chrome/browser/sync/profile_sync_service_factory.h" |
| 45 #include "chrome/browser/themes/theme_service_factory.h" | 45 #include "chrome/browser/themes/theme_service_factory.h" |
| 46 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" | 46 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" |
| 47 #include "chrome/browser/ui/global_error_service_factory.h" | 47 #include "chrome/browser/ui/global_error/global_error_service_factory.h" |
| 48 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" | 48 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" |
| 49 #include "chrome/browser/ui/webui/chrome_url_data_manager_factory.h" | 49 #include "chrome/browser/ui/webui/chrome_url_data_manager_factory.h" |
| 50 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" | 50 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" |
| 51 #include "chrome/browser/user_style_sheet_watcher_factory.h" | 51 #include "chrome/browser/user_style_sheet_watcher_factory.h" |
| 52 #include "chrome/browser/webdata/web_data_service_factory.h" | 52 #include "chrome/browser/webdata/web_data_service_factory.h" |
| 53 | 53 |
| 54 #if defined(ENABLE_CONFIGURATION_POLICY) | 54 #if defined(ENABLE_CONFIGURATION_POLICY) |
| 55 #include "chrome/browser/policy/managed_mode_policy_provider_factory.h" | 55 #include "chrome/browser/policy/managed_mode_policy_provider_factory.h" |
| 56 #endif | 56 #endif |
| 57 | 57 |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 } | 357 } |
| 358 | 358 |
| 359 result.append("\n /* Toplevel profile */\n"); | 359 result.append("\n /* Toplevel profile */\n"); |
| 360 result.append(" Profile [shape=box];\n"); | 360 result.append(" Profile [shape=box];\n"); |
| 361 | 361 |
| 362 result.append("}\n"); | 362 result.append("}\n"); |
| 363 return result; | 363 return result; |
| 364 } | 364 } |
| 365 | 365 |
| 366 #endif | 366 #endif |
| OLD | NEW |