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

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

Issue 6532069: Reland "WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 5." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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.h" 5 #include "chrome/browser/profiles/profile.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 #include "base/file_util.h" 12 #include "base/file_util.h"
13 #include "base/path_service.h" 13 #include "base/path_service.h"
14 #include "base/scoped_ptr.h" 14 #include "base/scoped_ptr.h"
15 #include "base/string_util.h" 15 #include "base/string_util.h"
16 #include "build/build_config.h" 16 #include "build/build_config.h"
17 #include "chrome/browser/appcache/chrome_appcache_service.h" 17 #include "chrome/browser/appcache/chrome_appcache_service.h"
18 #include "chrome/browser/background_contents_service.h" 18 #include "chrome/browser/background_contents_service.h"
19 #include "chrome/browser/browser_list.h" 19 #include "chrome/browser/browser_list.h"
20 #include "chrome/browser/browser_process.h" 20 #include "chrome/browser/browser_process.h"
21 #include "chrome/browser/browser_thread.h" 21 #include "chrome/browser/browser_thread.h"
22 #include "chrome/browser/chrome_blob_storage_context.h" 22 #include "chrome/browser/chrome_blob_storage_context.h"
23 #include "chrome/browser/dom_ui/chrome_url_data_manager.h"
24 #include "chrome/browser/content_settings/host_content_settings_map.h" 23 #include "chrome/browser/content_settings/host_content_settings_map.h"
25 #include "chrome/browser/download/download_manager.h" 24 #include "chrome/browser/download/download_manager.h"
26 #include "chrome/browser/extensions/extension_message_service.h" 25 #include "chrome/browser/extensions/extension_message_service.h"
27 #include "chrome/browser/extensions/extension_pref_store.h" 26 #include "chrome/browser/extensions/extension_pref_store.h"
28 #include "chrome/browser/extensions/extension_process_manager.h" 27 #include "chrome/browser/extensions/extension_process_manager.h"
29 #include "chrome/browser/file_system/browser_file_system_helper.h" 28 #include "chrome/browser/file_system/browser_file_system_helper.h"
30 #include "chrome/browser/host_zoom_map.h" 29 #include "chrome/browser/host_zoom_map.h"
31 #include "chrome/browser/in_process_webkit/webkit_context.h" 30 #include "chrome/browser/in_process_webkit/webkit_context.h"
32 #include "chrome/browser/net/pref_proxy_config_service.h" 31 #include "chrome/browser/net/pref_proxy_config_service.h"
33 #include "chrome/browser/notifications/desktop_notification_service.h" 32 #include "chrome/browser/notifications/desktop_notification_service.h"
34 #include "chrome/browser/prefs/pref_service.h" 33 #include "chrome/browser/prefs/pref_service.h"
35 #include "chrome/browser/profiles/off_the_record_profile_io_data.h" 34 #include "chrome/browser/profiles/off_the_record_profile_io_data.h"
36 #include "chrome/browser/ssl/ssl_host_state.h" 35 #include "chrome/browser/ssl/ssl_host_state.h"
37 #include "chrome/browser/sync/profile_sync_service.h" 36 #include "chrome/browser/sync/profile_sync_service.h"
38 #include "chrome/browser/themes/browser_theme_provider.h" 37 #include "chrome/browser/themes/browser_theme_provider.h"
39 #include "chrome/browser/ui/find_bar/find_bar_state.h" 38 #include "chrome/browser/ui/find_bar/find_bar_state.h"
39 #include "chrome/browser/webui/chrome_url_data_manager.h"
40 #include "chrome/common/chrome_constants.h" 40 #include "chrome/common/chrome_constants.h"
41 #include "chrome/common/chrome_paths.h" 41 #include "chrome/common/chrome_paths.h"
42 #include "chrome/common/chrome_switches.h" 42 #include "chrome/common/chrome_switches.h"
43 #include "chrome/common/json_pref_store.h" 43 #include "chrome/common/json_pref_store.h"
44 #include "chrome/common/notification_service.h" 44 #include "chrome/common/notification_service.h"
45 #include "chrome/common/pref_names.h" 45 #include "chrome/common/pref_names.h"
46 #include "chrome/common/render_messages.h" 46 #include "chrome/common/render_messages.h"
47 #include "grit/browser_resources.h" 47 #include "grit/browser_resources.h"
48 #include "grit/locale_settings.h" 48 #include "grit/locale_settings.h"
49 #include "net/base/transport_security_state.h" 49 #include "net/base/transport_security_state.h"
(...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 }; 756 };
757 #endif 757 #endif
758 758
759 Profile* Profile::CreateOffTheRecordProfile() { 759 Profile* Profile::CreateOffTheRecordProfile() {
760 #if defined(OS_CHROMEOS) 760 #if defined(OS_CHROMEOS)
761 if (Profile::IsGuestSession()) 761 if (Profile::IsGuestSession())
762 return new GuestSessionProfile(this); 762 return new GuestSessionProfile(this);
763 #endif 763 #endif
764 return new OffTheRecordProfileImpl(this); 764 return new OffTheRecordProfileImpl(this);
765 } 765 }
OLDNEW
« no previous file with comments | « chrome/browser/printing/print_dialog_cloud_uitest.cc ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698