OLD | NEW |
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 "apps/prefs.h" | 7 #include "apps/prefs.h" |
8 #include "base/debug/trace_event.h" | 8 #include "base/debug/trace_event.h" |
9 #include "base/prefs/pref_registry_simple.h" | 9 #include "base/prefs/pref_registry_simple.h" |
10 #include "base/prefs/pref_service.h" | 10 #include "base/prefs/pref_service.h" |
(...skipping 19 matching lines...) Expand all Loading... |
30 #include "chrome/browser/external_protocol/external_protocol_handler.h" | 30 #include "chrome/browser/external_protocol/external_protocol_handler.h" |
31 #include "chrome/browser/first_run/first_run.h" | 31 #include "chrome/browser/first_run/first_run.h" |
32 #include "chrome/browser/geolocation/geolocation_prefs.h" | 32 #include "chrome/browser/geolocation/geolocation_prefs.h" |
33 #include "chrome/browser/google/google_url_tracker.h" | 33 #include "chrome/browser/google/google_url_tracker.h" |
34 #include "chrome/browser/google/google_url_tracker_factory.h" | 34 #include "chrome/browser/google/google_url_tracker_factory.h" |
35 #include "chrome/browser/gpu/gl_string_manager.h" | 35 #include "chrome/browser/gpu/gl_string_manager.h" |
36 #include "chrome/browser/gpu/gpu_mode_manager.h" | 36 #include "chrome/browser/gpu/gpu_mode_manager.h" |
37 #include "chrome/browser/intranet_redirect_detector.h" | 37 #include "chrome/browser/intranet_redirect_detector.h" |
38 #include "chrome/browser/io_thread.h" | 38 #include "chrome/browser/io_thread.h" |
39 #include "chrome/browser/media/media_capture_devices_dispatcher.h" | 39 #include "chrome/browser/media/media_capture_devices_dispatcher.h" |
| 40 #include "chrome/browser/media/media_device_id_salt.h" |
40 #include "chrome/browser/media/media_stream_devices_controller.h" | 41 #include "chrome/browser/media/media_stream_devices_controller.h" |
41 #include "chrome/browser/metrics/metrics_log.h" | 42 #include "chrome/browser/metrics/metrics_log.h" |
42 #include "chrome/browser/metrics/metrics_service.h" | 43 #include "chrome/browser/metrics/metrics_service.h" |
43 #include "chrome/browser/metrics/variations/variations_service.h" | 44 #include "chrome/browser/metrics/variations/variations_service.h" |
44 #include "chrome/browser/net/http_server_properties_manager.h" | 45 #include "chrome/browser/net/http_server_properties_manager.h" |
45 #include "chrome/browser/net/net_pref_observer.h" | 46 #include "chrome/browser/net/net_pref_observer.h" |
46 #include "chrome/browser/net/predictor.h" | 47 #include "chrome/browser/net/predictor.h" |
47 #include "chrome/browser/net/pref_proxy_config_tracker_impl.h" | 48 #include "chrome/browser/net/pref_proxy_config_tracker_impl.h" |
48 #include "chrome/browser/net/ssl_config_service_manager.h" | 49 #include "chrome/browser/net/ssl_config_service_manager.h" |
49 #include "chrome/browser/network_time/network_time_service.h" | 50 #include "chrome/browser/network_time/network_time_service.h" |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 chrome_browser_net::HttpServerPropertiesManager::RegisterProfilePrefs( | 333 chrome_browser_net::HttpServerPropertiesManager::RegisterProfilePrefs( |
333 registry); | 334 registry); |
334 chrome_browser_net::Predictor::RegisterProfilePrefs(registry); | 335 chrome_browser_net::Predictor::RegisterProfilePrefs(registry); |
335 DownloadPrefs::RegisterProfilePrefs(registry); | 336 DownloadPrefs::RegisterProfilePrefs(registry); |
336 extensions::ExtensionPrefs::RegisterProfilePrefs(registry); | 337 extensions::ExtensionPrefs::RegisterProfilePrefs(registry); |
337 ExtensionWebUI::RegisterProfilePrefs(registry); | 338 ExtensionWebUI::RegisterProfilePrefs(registry); |
338 HostContentSettingsMap::RegisterProfilePrefs(registry); | 339 HostContentSettingsMap::RegisterProfilePrefs(registry); |
339 IncognitoModePrefs::RegisterProfilePrefs(registry); | 340 IncognitoModePrefs::RegisterProfilePrefs(registry); |
340 InstantUI::RegisterProfilePrefs(registry); | 341 InstantUI::RegisterProfilePrefs(registry); |
341 MediaCaptureDevicesDispatcher::RegisterProfilePrefs(registry); | 342 MediaCaptureDevicesDispatcher::RegisterProfilePrefs(registry); |
| 343 MediaDeviceIDSalt::RegisterProfilePrefs(registry); |
342 MediaStreamDevicesController::RegisterProfilePrefs(registry); | 344 MediaStreamDevicesController::RegisterProfilePrefs(registry); |
343 NetPrefObserver::RegisterProfilePrefs(registry); | 345 NetPrefObserver::RegisterProfilePrefs(registry); |
344 NetworkTimeService::RegisterProfilePrefs(registry); | 346 NetworkTimeService::RegisterProfilePrefs(registry); |
345 NewTabUI::RegisterProfilePrefs(registry); | 347 NewTabUI::RegisterProfilePrefs(registry); |
346 PasswordGenerationManager::RegisterProfilePrefs(registry); | 348 PasswordGenerationManager::RegisterProfilePrefs(registry); |
347 PasswordManager::RegisterProfilePrefs(registry); | 349 PasswordManager::RegisterProfilePrefs(registry); |
348 PrefProxyConfigTrackerImpl::RegisterProfilePrefs(registry); | 350 PrefProxyConfigTrackerImpl::RegisterProfilePrefs(registry); |
349 PrefsTabHelper::RegisterProfilePrefs(registry); | 351 PrefsTabHelper::RegisterProfilePrefs(registry); |
350 Profile::RegisterProfilePrefs(registry); | 352 Profile::RegisterProfilePrefs(registry); |
351 ProfileImpl::RegisterProfilePrefs(registry); | 353 ProfileImpl::RegisterProfilePrefs(registry); |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 } | 561 } |
560 local_state->ClearPref(prefs::kLastPromptedGoogleURL); | 562 local_state->ClearPref(prefs::kLastPromptedGoogleURL); |
561 | 563 |
562 current_version |= GOOGLE_URL_TRACKER_PREFS; | 564 current_version |= GOOGLE_URL_TRACKER_PREFS; |
563 local_state->SetInteger(prefs::kMultipleProfilePrefMigration, | 565 local_state->SetInteger(prefs::kMultipleProfilePrefMigration, |
564 current_version); | 566 current_version); |
565 } | 567 } |
566 } | 568 } |
567 | 569 |
568 } // namespace chrome | 570 } // namespace chrome |
OLD | NEW |