Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: chrome/browser/profiles/profile_dependency_manager.cc

Issue 12189011: Split up chrome/browser/policy subdirectory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698