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

Side by Side Diff: ios/chrome/browser/prefs/browser_prefs.mm

Issue 2453003002: [ios] Adds a VoiceSearchController interface to the provider layer. (Closed)
Patch Set: Rebased. Created 4 years, 1 month 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
« no previous file with comments | « ios/chrome/browser/prefs/BUILD.gn ('k') | ios/chrome/browser/voice/BUILD.gn » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "ios/chrome/browser/prefs/browser_prefs.h" 5 #include "ios/chrome/browser/prefs/browser_prefs.h"
6 6
7 #include "components/autofill/core/browser/autofill_manager.h" 7 #include "components/autofill/core/browser/autofill_manager.h"
8 #include "components/browsing_data/core/pref_names.h" 8 #include "components/browsing_data/core/pref_names.h"
9 #include "components/content_settings/core/browser/host_content_settings_map.h" 9 #include "components/content_settings/core/browser/host_content_settings_map.h"
10 #include "components/dom_distiller/core/distilled_page_prefs.h" 10 #include "components/dom_distiller/core/distilled_page_prefs.h"
(...skipping 23 matching lines...) Expand all
34 #include "ios/chrome/browser/browser_state/browser_state_info_cache.h" 34 #include "ios/chrome/browser/browser_state/browser_state_info_cache.h"
35 #include "ios/chrome/browser/first_run/first_run.h" 35 #include "ios/chrome/browser/first_run/first_run.h"
36 #import "ios/chrome/browser/geolocation/omnibox_geolocation_local_state.h" 36 #import "ios/chrome/browser/geolocation/omnibox_geolocation_local_state.h"
37 #import "ios/chrome/browser/memory/memory_debugger_manager.h" 37 #import "ios/chrome/browser/memory/memory_debugger_manager.h"
38 #import "ios/chrome/browser/metrics/ios_chrome_metrics_service_client.h" 38 #import "ios/chrome/browser/metrics/ios_chrome_metrics_service_client.h"
39 #include "ios/chrome/browser/net/http_server_properties_manager_factory.h" 39 #include "ios/chrome/browser/net/http_server_properties_manager_factory.h"
40 #include "ios/chrome/browser/notification_promo.h" 40 #include "ios/chrome/browser/notification_promo.h"
41 #include "ios/chrome/browser/pref_names.h" 41 #include "ios/chrome/browser/pref_names.h"
42 #include "ios/chrome/browser/pref_names.h" 42 #include "ios/chrome/browser/pref_names.h"
43 #include "ios/chrome/browser/signin/signin_manager_factory.h" 43 #include "ios/chrome/browser/signin/signin_manager_factory.h"
44 #include "ios/chrome/browser/voice/voice_search_prefs_registration.h"
44 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" 45 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h"
45 #include "ui/base/l10n/l10n_util.h" 46 #include "ui/base/l10n/l10n_util.h"
46 47
47 void RegisterLocalStatePrefs(PrefRegistrySimple* registry) { 48 void RegisterLocalStatePrefs(PrefRegistrySimple* registry) {
48 BrowserStateInfoCache::RegisterPrefs(registry); 49 BrowserStateInfoCache::RegisterPrefs(registry);
49 flags_ui::PrefServiceFlagsStorage::RegisterPrefs(registry); 50 flags_ui::PrefServiceFlagsStorage::RegisterPrefs(registry);
50 gcm::GCMChannelStatusSyncer::RegisterPrefs(registry); 51 gcm::GCMChannelStatusSyncer::RegisterPrefs(registry);
51 ios::SigninManagerFactory::RegisterPrefs(registry); 52 ios::SigninManagerFactory::RegisterPrefs(registry);
52 IOSChromeMetricsServiceClient::RegisterPrefs(registry); 53 IOSChromeMetricsServiceClient::RegisterPrefs(registry);
53 network_time::NetworkTimeTracker::RegisterPrefs(registry); 54 network_time::NetworkTimeTracker::RegisterPrefs(registry);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 ntp_tiles::MostVisitedSites::RegisterProfilePrefs(registry); 90 ntp_tiles::MostVisitedSites::RegisterProfilePrefs(registry);
90 ntp_tiles::PopularSites::RegisterProfilePrefs(registry); 91 ntp_tiles::PopularSites::RegisterProfilePrefs(registry);
91 ios::NotificationPromo::RegisterProfilePrefs(registry); 92 ios::NotificationPromo::RegisterProfilePrefs(registry);
92 password_manager::PasswordManager::RegisterProfilePrefs(registry); 93 password_manager::PasswordManager::RegisterProfilePrefs(registry);
93 PrefProxyConfigTrackerImpl::RegisterProfilePrefs(registry); 94 PrefProxyConfigTrackerImpl::RegisterProfilePrefs(registry);
94 syncer::SyncPrefs::RegisterProfilePrefs(registry); 95 syncer::SyncPrefs::RegisterProfilePrefs(registry);
95 TemplateURLPrepopulateData::RegisterProfilePrefs(registry); 96 TemplateURLPrepopulateData::RegisterProfilePrefs(registry);
96 translate::TranslatePrefs::RegisterProfilePrefs(registry); 97 translate::TranslatePrefs::RegisterProfilePrefs(registry);
97 variations::VariationsService::RegisterProfilePrefs(registry); 98 variations::VariationsService::RegisterProfilePrefs(registry);
98 ZeroSuggestProvider::RegisterProfilePrefs(registry); 99 ZeroSuggestProvider::RegisterProfilePrefs(registry);
100 RegisterVoiceSearchBrowserStatePrefs(registry);
99 101
100 registry->RegisterBooleanPref(prefs::kDataSaverEnabled, false); 102 registry->RegisterBooleanPref(prefs::kDataSaverEnabled, false);
101 registry->RegisterBooleanPref( 103 registry->RegisterBooleanPref(
102 prefs::kEnableDoNotTrack, false, 104 prefs::kEnableDoNotTrack, false,
103 user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); 105 user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
104 registry->RegisterBooleanPref( 106 registry->RegisterBooleanPref(
105 prefs::kEnableTranslate, true, 107 prefs::kEnableTranslate, true,
106 user_prefs::PrefRegistrySyncable::SYNCABLE_PREF); 108 user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
107 registry->RegisterStringPref(prefs::kAcceptLanguages, 109 registry->RegisterStringPref(prefs::kAcceptLanguages,
108 l10n_util::GetStringUTF8(IDS_ACCEPT_LANGUAGES)); 110 l10n_util::GetStringUTF8(IDS_ACCEPT_LANGUAGES));
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 } 142 }
141 143
142 // This method should be periodically pruned of year+ old migrations. 144 // This method should be periodically pruned of year+ old migrations.
143 void MigrateObsoleteBrowserStatePrefs(PrefService* prefs) { 145 void MigrateObsoleteBrowserStatePrefs(PrefService* prefs) {
144 // Added 07/2014. 146 // Added 07/2014.
145 translate::TranslatePrefs::MigrateUserPrefs(prefs, prefs::kAcceptLanguages); 147 translate::TranslatePrefs::MigrateUserPrefs(prefs, prefs::kAcceptLanguages);
146 148
147 // Added 08/2015. 149 // Added 08/2015.
148 prefs->ClearPref(::prefs::kSigninSharedAuthenticationUserId); 150 prefs->ClearPref(::prefs::kSigninSharedAuthenticationUserId);
149 } 151 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/prefs/BUILD.gn ('k') | ios/chrome/browser/voice/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698