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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" | 94 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" |
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 | 98 |
99 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) | 99 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) |
100 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" | 100 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" |
101 #endif | 101 #endif |
102 | 102 |
103 #if defined(ENABLE_CONFIGURATION_POLICY) | 103 #if defined(ENABLE_CONFIGURATION_POLICY) |
104 #include "chrome/browser/policy/user_policy_signin_service_factory.h" | 104 #include "chrome/browser/policy/cloud/user_policy_signin_service_factory.h" |
105 #endif | 105 #endif |
106 | 106 |
107 #if defined(OS_CHROMEOS) | 107 #if defined(OS_CHROMEOS) |
108 #include "chrome/browser/chromeos/extensions/input_method_api.h" | 108 #include "chrome/browser/chromeos/extensions/input_method_api.h" |
109 #include "chrome/browser/chromeos/extensions/media_player_api.h" | 109 #include "chrome/browser/chromeos/extensions/media_player_api.h" |
110 #include "chrome/browser/chromeos/extensions/networking_private_event_router_fac
tory.h" | 110 #include "chrome/browser/chromeos/extensions/networking_private_event_router_fac
tory.h" |
111 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h" | 111 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h" |
112 #if defined(FILE_MANAGER_EXTENSION) | 112 #if defined(FILE_MANAGER_EXTENSION) |
113 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h" | 113 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h" |
114 #endif | 114 #endif |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 } | 485 } |
486 | 486 |
487 result.append("\n /* Toplevel profile */\n"); | 487 result.append("\n /* Toplevel profile */\n"); |
488 result.append(" Profile [shape=box];\n"); | 488 result.append(" Profile [shape=box];\n"); |
489 | 489 |
490 result.append("}\n"); | 490 result.append("}\n"); |
491 return result; | 491 return result; |
492 } | 492 } |
493 | 493 |
494 #endif | 494 #endif |
OLD | NEW |