Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/browser/about_flags.h" | 7 #include "chrome/browser/about_flags.h" |
| 8 #include "chrome/browser/autofill/autofill_manager.h" | 8 #include "chrome/browser/autofill/autofill_manager.h" |
| 9 #include "chrome/browser/background_contents_service.h" | 9 #include "chrome/browser/background_contents_service.h" |
| 10 #include "chrome/browser/background_mode_manager.h" | 10 #include "chrome/browser/background_mode_manager.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 83 Browser::RegisterPrefs(local_state); | 83 Browser::RegisterPrefs(local_state); |
| 84 WebCacheManager::RegisterPrefs(local_state); | 84 WebCacheManager::RegisterPrefs(local_state); |
| 85 ExternalProtocolHandler::RegisterPrefs(local_state); | 85 ExternalProtocolHandler::RegisterPrefs(local_state); |
| 86 GoogleURLTracker::RegisterPrefs(local_state); | 86 GoogleURLTracker::RegisterPrefs(local_state); |
| 87 IntranetRedirectDetector::RegisterPrefs(local_state); | 87 IntranetRedirectDetector::RegisterPrefs(local_state); |
| 88 KeywordEditorController::RegisterPrefs(local_state); | 88 KeywordEditorController::RegisterPrefs(local_state); |
| 89 MetricsLog::RegisterPrefs(local_state); | 89 MetricsLog::RegisterPrefs(local_state); |
| 90 MetricsService::RegisterPrefs(local_state); | 90 MetricsService::RegisterPrefs(local_state); |
| 91 SafeBrowsingService::RegisterPrefs(local_state); | 91 SafeBrowsingService::RegisterPrefs(local_state); |
| 92 browser_shutdown::RegisterPrefs(local_state); | 92 browser_shutdown::RegisterPrefs(local_state); |
| 93 chrome_browser_net::RegisterPrefs(local_state); | |
|
jar (doing other things)
2010/12/13 20:27:29
Where, if anywhere, are the new prefs declared (re
Miranda Callahan
2010/12/14 01:03:49
I added the new user pref registration to Register
| |
| 94 #if defined(TOOLKIT_VIEWS) | 93 #if defined(TOOLKIT_VIEWS) |
| 95 BrowserView::RegisterBrowserViewPrefs(local_state); | 94 BrowserView::RegisterBrowserViewPrefs(local_state); |
| 96 #endif | 95 #endif |
| 97 UpgradeDetector::RegisterPrefs(local_state); | 96 UpgradeDetector::RegisterPrefs(local_state); |
| 98 TaskManager::RegisterPrefs(local_state); | 97 TaskManager::RegisterPrefs(local_state); |
| 99 geolocation::RegisterPrefs(local_state); | 98 geolocation::RegisterPrefs(local_state); |
| 100 AutoFillManager::RegisterBrowserPrefs(local_state); | 99 AutoFillManager::RegisterBrowserPrefs(local_state); |
| 101 BackgroundPageTracker::RegisterPrefs(local_state); | 100 BackgroundPageTracker::RegisterPrefs(local_state); |
| 102 #if defined(OS_CHROMEOS) | 101 #if defined(OS_CHROMEOS) |
| 103 chromeos::UserManager::RegisterPrefs(local_state); | 102 chromeos::UserManager::RegisterPrefs(local_state); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 144 chromeos::Preferences::RegisterUserPrefs(user_prefs); | 143 chromeos::Preferences::RegisterUserPrefs(user_prefs); |
| 145 #endif | 144 #endif |
| 146 BackgroundContentsService::RegisterUserPrefs(user_prefs); | 145 BackgroundContentsService::RegisterUserPrefs(user_prefs); |
| 147 SigninManager::RegisterUserPrefs(user_prefs); | 146 SigninManager::RegisterUserPrefs(user_prefs); |
| 148 TemplateURLModel::RegisterUserPrefs(user_prefs); | 147 TemplateURLModel::RegisterUserPrefs(user_prefs); |
| 149 InstantController::RegisterUserPrefs(user_prefs); | 148 InstantController::RegisterUserPrefs(user_prefs); |
| 150 NetPrefObserver::RegisterPrefs(user_prefs); | 149 NetPrefObserver::RegisterPrefs(user_prefs); |
| 151 } | 150 } |
| 152 | 151 |
| 153 } // namespace browser | 152 } // namespace browser |
| OLD | NEW |