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

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

Issue 10933044: Move chrome/browser/plugin_* to chrome/browser/plugins/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@remove_plugin_group
Patch Set: . Created 8 years, 3 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
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_impl.h" 5 #include "chrome/browser/profiles/profile_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/environment.h" 10 #include "base/environment.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "chrome/browser/geolocation/chrome_geolocation_permission_context.h" 42 #include "chrome/browser/geolocation/chrome_geolocation_permission_context.h"
43 #include "chrome/browser/history/shortcuts_backend.h" 43 #include "chrome/browser/history/shortcuts_backend.h"
44 #include "chrome/browser/history/top_sites.h" 44 #include "chrome/browser/history/top_sites.h"
45 #include "chrome/browser/metrics/metrics_service.h" 45 #include "chrome/browser/metrics/metrics_service.h"
46 #include "chrome/browser/net/chrome_url_request_context.h" 46 #include "chrome/browser/net/chrome_url_request_context.h"
47 #include "chrome/browser/net/net_pref_observer.h" 47 #include "chrome/browser/net/net_pref_observer.h"
48 #include "chrome/browser/net/predictor.h" 48 #include "chrome/browser/net/predictor.h"
49 #include "chrome/browser/net/proxy_service_factory.h" 49 #include "chrome/browser/net/proxy_service_factory.h"
50 #include "chrome/browser/net/ssl_config_service_manager.h" 50 #include "chrome/browser/net/ssl_config_service_manager.h"
51 #include "chrome/browser/net/url_fixer_upper.h" 51 #include "chrome/browser/net/url_fixer_upper.h"
52 #include "chrome/browser/plugin_prefs.h" 52 #include "chrome/browser/plugins/plugin_prefs.h"
53 #include "chrome/browser/policy/policy_service.h" 53 #include "chrome/browser/policy/policy_service.h"
54 #include "chrome/browser/policy/user_cloud_policy_manager.h" 54 #include "chrome/browser/policy/user_cloud_policy_manager.h"
55 #include "chrome/browser/prefs/browser_prefs.h" 55 #include "chrome/browser/prefs/browser_prefs.h"
56 #include "chrome/browser/prefs/scoped_user_pref_update.h" 56 #include "chrome/browser/prefs/scoped_user_pref_update.h"
57 #include "chrome/browser/prerender/prerender_manager_factory.h" 57 #include "chrome/browser/prerender/prerender_manager_factory.h"
58 #include "chrome/browser/profiles/chrome_version_service.h" 58 #include "chrome/browser/profiles/chrome_version_service.h"
59 #include "chrome/browser/profiles/gaia_info_update_service.h" 59 #include "chrome/browser/profiles/gaia_info_update_service.h"
60 #include "chrome/browser/profiles/profile_dependency_manager.h" 60 #include "chrome/browser/profiles/profile_dependency_manager.h"
61 #include "chrome/browser/profiles/profile_destroyer.h" 61 #include "chrome/browser/profiles/profile_destroyer.h"
62 #include "chrome/browser/profiles/profile_info_cache.h" 62 #include "chrome/browser/profiles/profile_info_cache.h"
(...skipping 1033 matching lines...) Expand 10 before | Expand all | Expand 10 after
1096 if (!path.empty()) 1096 if (!path.empty())
1097 *cache_path = path; 1097 *cache_path = path;
1098 *max_size = is_media_context ? prefs_->GetInteger(prefs::kMediaCacheSize) : 1098 *max_size = is_media_context ? prefs_->GetInteger(prefs::kMediaCacheSize) :
1099 prefs_->GetInteger(prefs::kDiskCacheSize); 1099 prefs_->GetInteger(prefs::kDiskCacheSize);
1100 } 1100 }
1101 1101
1102 base::Callback<ChromeURLDataManagerBackend*(void)> 1102 base::Callback<ChromeURLDataManagerBackend*(void)>
1103 ProfileImpl::GetChromeURLDataManagerBackendGetter() const { 1103 ProfileImpl::GetChromeURLDataManagerBackendGetter() const {
1104 return io_data_.GetChromeURLDataManagerBackendGetter(); 1104 return io_data_.GetChromeURLDataManagerBackendGetter();
1105 } 1105 }
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_dependency_manager.cc ('k') | chrome/browser/renderer_host/plugin_info_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698