| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" | 84 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" |
| 85 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" | 85 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" |
| 86 #include "chrome/browser/user_style_sheet_watcher_factory.h" | 86 #include "chrome/browser/user_style_sheet_watcher_factory.h" |
| 87 #include "chrome/browser/webdata/web_data_service_factory.h" | 87 #include "chrome/browser/webdata/web_data_service_factory.h" |
| 88 | 88 |
| 89 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) | 89 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) |
| 90 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" | 90 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" |
| 91 #endif | 91 #endif |
| 92 | 92 |
| 93 #if defined(ENABLE_CONFIGURATION_POLICY) | 93 #if defined(ENABLE_CONFIGURATION_POLICY) |
| 94 #include "chrome/browser/policy/user_policy_signin_service_factory.h" | 94 #include "chrome/browser/policy/cloud/user_policy_signin_service_factory.h" |
| 95 #endif | 95 #endif |
| 96 | 96 |
| 97 #if defined(OS_CHROMEOS) | 97 #if defined(OS_CHROMEOS) |
| 98 #include "chrome/browser/chromeos/extensions/input_method_api.h" | 98 #include "chrome/browser/chromeos/extensions/input_method_api.h" |
| 99 #include "chrome/browser/chromeos/extensions/media_player_api.h" | 99 #include "chrome/browser/chromeos/extensions/media_player_api.h" |
| 100 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h" | 100 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h" |
| 101 #if defined(FILE_MANAGER_EXTENSION) | 101 #if defined(FILE_MANAGER_EXTENSION) |
| 102 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h" | 102 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h" |
| 103 #endif | 103 #endif |
| 104 #endif | 104 #endif |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 } | 463 } |
| 464 | 464 |
| 465 result.append("\n /* Toplevel profile */\n"); | 465 result.append("\n /* Toplevel profile */\n"); |
| 466 result.append(" Profile [shape=box];\n"); | 466 result.append(" Profile [shape=box];\n"); |
| 467 | 467 |
| 468 result.append("}\n"); | 468 result.append("}\n"); |
| 469 return result; | 469 return result; |
| 470 } | 470 } |
| 471 | 471 |
| 472 #endif | 472 #endif |
| OLD | NEW |