| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" | 95 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" |
| 96 #include "chrome/browser/user_style_sheet_watcher_factory.h" | 96 #include "chrome/browser/user_style_sheet_watcher_factory.h" |
| 97 #include "chrome/browser/webdata/web_data_service_factory.h" | 97 #include "chrome/browser/webdata/web_data_service_factory.h" |
| 98 #include "chrome/browser/webdata/web_database_service_factory.h" | 98 #include "chrome/browser/webdata/web_database_service_factory.h" |
| 99 | 99 |
| 100 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) | 100 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) |
| 101 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" | 101 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" |
| 102 #endif | 102 #endif |
| 103 | 103 |
| 104 #if defined(ENABLE_CONFIGURATION_POLICY) | 104 #if defined(ENABLE_CONFIGURATION_POLICY) |
| 105 #include "chrome/browser/policy/user_policy_signin_service_factory.h" | 105 #include "chrome/browser/policy/cloud/user_policy_signin_service_factory.h" |
| 106 #endif | 106 #endif |
| 107 | 107 |
| 108 #if defined(OS_CHROMEOS) | 108 #if defined(OS_CHROMEOS) |
| 109 #include "chrome/browser/chromeos/extensions/input_method_api.h" | 109 #include "chrome/browser/chromeos/extensions/input_method_api.h" |
| 110 #include "chrome/browser/chromeos/extensions/media_player_api.h" | 110 #include "chrome/browser/chromeos/extensions/media_player_api.h" |
| 111 #include "chrome/browser/chromeos/extensions/networking_private_event_router_fac
tory.h" | 111 #include "chrome/browser/chromeos/extensions/networking_private_event_router_fac
tory.h" |
| 112 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h" | 112 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h" |
| 113 #if defined(FILE_MANAGER_EXTENSION) | 113 #if defined(FILE_MANAGER_EXTENSION) |
| 114 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h" | 114 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h" |
| 115 #endif | 115 #endif |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 } | 487 } |
| 488 | 488 |
| 489 result.append("\n /* Toplevel profile */\n"); | 489 result.append("\n /* Toplevel profile */\n"); |
| 490 result.append(" Profile [shape=box];\n"); | 490 result.append(" Profile [shape=box];\n"); |
| 491 | 491 |
| 492 result.append("}\n"); | 492 result.append("}\n"); |
| 493 return result; | 493 return result; |
| 494 } | 494 } |
| 495 | 495 |
| 496 #endif | 496 #endif |
| OLD | NEW |