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

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

Issue 10020048: Work on USE_ASH/USE_AURA split. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to ToT Created 8 years, 8 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
« no previous file with comments | « chrome/browser/platform_util_aura.cc ('k') | chrome/browser/themes/theme_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 22 matching lines...) Expand all
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
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
OLDNEW
« no previous file with comments | « chrome/browser/platform_util_aura.cc ('k') | chrome/browser/themes/theme_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698