| 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 22 matching lines...) Expand all Loading... |
| 33 #include "chrome/browser/spellchecker/spellcheck_factory.h" | 33 #include "chrome/browser/spellchecker/spellcheck_factory.h" |
| 34 #include "chrome/browser/sync/profile_sync_service_factory.h" | 34 #include "chrome/browser/sync/profile_sync_service_factory.h" |
| 35 #include "chrome/browser/tabs/pinned_tab_service_factory.h" | 35 #include "chrome/browser/tabs/pinned_tab_service_factory.h" |
| 36 #include "chrome/browser/themes/theme_service_factory.h" | 36 #include "chrome/browser/themes/theme_service_factory.h" |
| 37 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" | 37 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" |
| 38 #include "chrome/browser/ui/global_error_service_factory.h" | 38 #include "chrome/browser/ui/global_error_service_factory.h" |
| 39 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" | 39 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" |
| 40 #include "chrome/browser/user_style_sheet_watcher_factory.h" | 40 #include "chrome/browser/user_style_sheet_watcher_factory.h" |
| 41 | 41 |
| 42 #if defined(USE_AURA) | 42 #if defined(USE_AURA) |
| 43 #include "chrome/browser/ui/views/ash/gesture_prefs_observer_factory_aura.h" | 43 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" |
| 44 #endif | 44 #endif |
| 45 | 45 |
| 46 #ifndef NDEBUG | 46 #ifndef NDEBUG |
| 47 #include "base/command_line.h" | 47 #include "base/command_line.h" |
| 48 #include "base/file_util.h" | 48 #include "base/file_util.h" |
| 49 #include "chrome/common/chrome_switches.h" | 49 #include "chrome/common/chrome_switches.h" |
| 50 #endif | 50 #endif |
| 51 | 51 |
| 52 class Profile; | 52 class Profile; |
| 53 | 53 |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 } | 324 } |
| 325 | 325 |
| 326 result.append("\n /* Toplevel profile */\n"); | 326 result.append("\n /* Toplevel profile */\n"); |
| 327 result.append(" Profile [shape=box];\n"); | 327 result.append(" Profile [shape=box];\n"); |
| 328 | 328 |
| 329 result.append("}\n"); | 329 result.append("}\n"); |
| 330 return result; | 330 return result; |
| 331 } | 331 } |
| 332 | 332 |
| 333 #endif | 333 #endif |
| OLD | NEW |