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

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

Issue 2182493009: Framework for indexing of subresource filtering rules. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Attempt #2 to fix tests on Windows. 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"
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 IOThread::RegisterPrefs(registry); 339 IOThread::RegisterPrefs(registry);
340 network_time::NetworkTimeTracker::RegisterPrefs(registry); 340 network_time::NetworkTimeTracker::RegisterPrefs(registry);
341 OriginTrialPrefs::RegisterPrefs(registry); 341 OriginTrialPrefs::RegisterPrefs(registry);
342 PrefProxyConfigTrackerImpl::RegisterPrefs(registry); 342 PrefProxyConfigTrackerImpl::RegisterPrefs(registry);
343 ProfileInfoCache::RegisterPrefs(registry); 343 ProfileInfoCache::RegisterPrefs(registry);
344 profiles::RegisterPrefs(registry); 344 profiles::RegisterPrefs(registry);
345 rappor::RapporService::RegisterPrefs(registry); 345 rappor::RapporService::RegisterPrefs(registry);
346 RegisterScreenshotPrefs(registry); 346 RegisterScreenshotPrefs(registry);
347 SigninManagerFactory::RegisterPrefs(registry); 347 SigninManagerFactory::RegisterPrefs(registry);
348 ssl_config::SSLConfigServiceManager::RegisterPrefs(registry); 348 ssl_config::SSLConfigServiceManager::RegisterPrefs(registry);
349 subresource_filter::RulesetVersion::RegisterPrefs(registry); 349 subresource_filter::IndexedRulesetVersion::RegisterPrefs(registry);
350 startup_metric_utils::RegisterPrefs(registry); 350 startup_metric_utils::RegisterPrefs(registry);
351 update_client::RegisterPrefs(registry); 351 update_client::RegisterPrefs(registry);
352 web_resource::PromoResourceService::RegisterPrefs(registry); 352 web_resource::PromoResourceService::RegisterPrefs(registry);
353 353
354 policy::BrowserPolicyConnector::RegisterPrefs(registry); 354 policy::BrowserPolicyConnector::RegisterPrefs(registry);
355 policy::PolicyStatisticsCollector::RegisterPrefs(registry); 355 policy::PolicyStatisticsCollector::RegisterPrefs(registry);
356 356
357 #if defined(ENABLE_EXTENSIONS) 357 #if defined(ENABLE_EXTENSIONS)
358 EasyUnlockService::RegisterPrefs(registry); 358 EasyUnlockService::RegisterPrefs(registry);
359 #endif 359 #endif
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 // Added 5/2016. 735 // Added 5/2016.
736 profile_prefs->ClearPref(kDesktopSearchRedirectionInfobarShownPref); 736 profile_prefs->ClearPref(kDesktopSearchRedirectionInfobarShownPref);
737 737
738 // Added 7/2016. 738 // Added 7/2016.
739 DeleteWebRTCIdentityStoreDB(profile); 739 DeleteWebRTCIdentityStoreDB(profile);
740 profile_prefs->ClearPref(kNetworkPredictionEnabled); 740 profile_prefs->ClearPref(kNetworkPredictionEnabled);
741 profile_prefs->ClearPref(kDisableSpdy); 741 profile_prefs->ClearPref(kDisableSpdy);
742 } 742 }
743 743
744 } // namespace chrome 744 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698