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

Side by Side Diff: chrome/browser/prefs/browser_prefs.cc

Issue 2243813002: Rename BackgroundBudgetService to BudgetManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@budget_database
Patch Set: code review cleanup Created 4 years, 4 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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/prefs/browser_prefs.h" 5 #include "chrome/browser/prefs/browser_prefs.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/files/file_util.h" 9 #include "base/files/file_util.h"
10 #include "base/metrics/histogram_macros.h" 10 #include "base/metrics/histogram_macros.h"
11 #include "base/trace_event/trace_event.h" 11 #include "base/trace_event/trace_event.h"
12 #include "build/build_config.h" 12 #include "build/build_config.h"
13 #include "chrome/browser/about_flags.h" 13 #include "chrome/browser/about_flags.h"
14 #include "chrome/browser/accessibility/invert_bubble_prefs.h" 14 #include "chrome/browser/accessibility/invert_bubble_prefs.h"
15 #include "chrome/browser/browser_process_impl.h" 15 #include "chrome/browser/browser_process_impl.h"
16 #include "chrome/browser/browser_shutdown.h" 16 #include "chrome/browser/browser_shutdown.h"
17 #include "chrome/browser/budget_service/background_budget_service.h" 17 #include "chrome/browser/budget_service/budget_manager.h"
18 #include "chrome/browser/chrome_content_browser_client.h" 18 #include "chrome/browser/chrome_content_browser_client.h"
19 #include "chrome/browser/component_updater/recovery_component_installer.h" 19 #include "chrome/browser/component_updater/recovery_component_installer.h"
20 #include "chrome/browser/component_updater/supervised_user_whitelist_installer.h " 20 #include "chrome/browser/component_updater/supervised_user_whitelist_installer.h "
21 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" 21 #include "chrome/browser/custom_handlers/protocol_handler_registry.h"
22 #include "chrome/browser/devtools/devtools_window.h" 22 #include "chrome/browser/devtools/devtools_window.h"
23 #include "chrome/browser/download/download_prefs.h" 23 #include "chrome/browser/download/download_prefs.h"
24 #include "chrome/browser/external_protocol/external_protocol_handler.h" 24 #include "chrome/browser/external_protocol/external_protocol_handler.h"
25 #include "chrome/browser/first_run/first_run.h" 25 #include "chrome/browser/first_run/first_run.h"
26 #include "chrome/browser/geolocation/geolocation_prefs.h" 26 #include "chrome/browser/geolocation/geolocation_prefs.h"
27 #include "chrome/browser/gpu/gpu_mode_manager.h" 27 #include "chrome/browser/gpu/gpu_mode_manager.h"
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 RegisterBrowserViewLocalPrefs(registry); 438 RegisterBrowserViewLocalPrefs(registry);
439 #endif 439 #endif
440 } 440 }
441 441
442 // Register prefs applicable to all profiles. 442 // Register prefs applicable to all profiles.
443 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { 443 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {
444 TRACE_EVENT0("browser", "chrome::RegisterProfilePrefs"); 444 TRACE_EVENT0("browser", "chrome::RegisterProfilePrefs");
445 SCOPED_UMA_HISTOGRAM_TIMER("Settings.RegisterProfilePrefsTime"); 445 SCOPED_UMA_HISTOGRAM_TIMER("Settings.RegisterProfilePrefsTime");
446 // User prefs. Please keep this list alphabetized. 446 // User prefs. Please keep this list alphabetized.
447 autofill::AutofillManager::RegisterProfilePrefs(registry); 447 autofill::AutofillManager::RegisterProfilePrefs(registry);
448 BackgroundBudgetService::RegisterProfilePrefs(registry); 448 BudgetManager::RegisterProfilePrefs(registry);
449 sync_driver::SyncPrefs::RegisterProfilePrefs(registry); 449 sync_driver::SyncPrefs::RegisterProfilePrefs(registry);
450 ChromeContentBrowserClient::RegisterProfilePrefs(registry); 450 ChromeContentBrowserClient::RegisterProfilePrefs(registry);
451 ChromeVersionService::RegisterProfilePrefs(registry); 451 ChromeVersionService::RegisterProfilePrefs(registry);
452 chrome_browser_net::HttpServerPropertiesManagerFactory::RegisterProfilePrefs( 452 chrome_browser_net::HttpServerPropertiesManagerFactory::RegisterProfilePrefs(
453 registry); 453 registry);
454 chrome_browser_net::Predictor::RegisterProfilePrefs(registry); 454 chrome_browser_net::Predictor::RegisterProfilePrefs(registry);
455 chrome_browser_net::RegisterPredictionOptionsProfilePrefs(registry); 455 chrome_browser_net::RegisterPredictionOptionsProfilePrefs(registry);
456 chrome_prefs::RegisterProfilePrefs(registry); 456 chrome_prefs::RegisterProfilePrefs(registry);
457 dom_distiller::DistilledPagePrefs::RegisterProfilePrefs(registry); 457 dom_distiller::DistilledPagePrefs::RegisterProfilePrefs(registry);
458 DownloadPrefs::RegisterProfilePrefs(registry); 458 DownloadPrefs::RegisterProfilePrefs(registry);
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 // Added 5/2016. 737 // Added 5/2016.
738 profile_prefs->ClearPref(kDesktopSearchRedirectionInfobarShownPref); 738 profile_prefs->ClearPref(kDesktopSearchRedirectionInfobarShownPref);
739 739
740 // Added 7/2016. 740 // Added 7/2016.
741 DeleteWebRTCIdentityStoreDB(profile); 741 DeleteWebRTCIdentityStoreDB(profile);
742 profile_prefs->ClearPref(kNetworkPredictionEnabled); 742 profile_prefs->ClearPref(kNetworkPredictionEnabled);
743 profile_prefs->ClearPref(kDisableSpdy); 743 profile_prefs->ClearPref(kDisableSpdy);
744 } 744 }
745 745
746 } // namespace chrome 746 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698