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

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

Issue 1558203003: Add Startup.TimeSinceLastStartup histogram. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@uptime
Patch Set: ifdef to fix build error on Android. Created 4 years, 11 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
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | components/startup_metric_utils.gypi » ('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 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/metrics/histogram_macros.h" 9 #include "base/metrics/histogram_macros.h"
10 #include "base/prefs/pref_registry_simple.h" 10 #include "base/prefs/pref_registry_simple.h"
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 #include "components/gcm_driver/gcm_channel_status_syncer.h" 77 #include "components/gcm_driver/gcm_channel_status_syncer.h"
78 #include "components/network_time/network_time_tracker.h" 78 #include "components/network_time/network_time_tracker.h"
79 #include "components/omnibox/browser/zero_suggest_provider.h" 79 #include "components/omnibox/browser/zero_suggest_provider.h"
80 #include "components/password_manager/core/browser/password_bubble_experiment.h" 80 #include "components/password_manager/core/browser/password_bubble_experiment.h"
81 #include "components/password_manager/core/browser/password_manager.h" 81 #include "components/password_manager/core/browser/password_manager.h"
82 #include "components/pref_registry/pref_registry_syncable.h" 82 #include "components/pref_registry/pref_registry_syncable.h"
83 #include "components/proxy_config/pref_proxy_config_tracker_impl.h" 83 #include "components/proxy_config/pref_proxy_config_tracker_impl.h"
84 #include "components/rappor/rappor_service.h" 84 #include "components/rappor/rappor_service.h"
85 #include "components/search_engines/template_url_prepopulate_data.h" 85 #include "components/search_engines/template_url_prepopulate_data.h"
86 #include "components/ssl_config/ssl_config_service_manager.h" 86 #include "components/ssl_config/ssl_config_service_manager.h"
87 #include "components/startup_metric_utils/browser/startup_metric_utils.h"
87 #include "components/sync_driver/sync_prefs.h" 88 #include "components/sync_driver/sync_prefs.h"
88 #include "components/syncable_prefs/pref_service_syncable.h" 89 #include "components/syncable_prefs/pref_service_syncable.h"
89 #include "components/translate/core/browser/translate_prefs.h" 90 #include "components/translate/core/browser/translate_prefs.h"
90 #include "components/variations/service/variations_service.h" 91 #include "components/variations/service/variations_service.h"
91 #include "components/web_resource/promo_resource_service.h" 92 #include "components/web_resource/promo_resource_service.h"
92 #include "content/public/browser/render_process_host.h" 93 #include "content/public/browser/render_process_host.h"
93 #include "net/http/http_server_properties_manager.h" 94 #include "net/http/http_server_properties_manager.h"
94 95
95 #if defined(ENABLE_AUTOFILL_DIALOG) 96 #if defined(ENABLE_AUTOFILL_DIALOG)
96 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h" 97 #include "chrome/browser/ui/autofill/autofill_dialog_controller.h"
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 IntranetRedirectDetector::RegisterPrefs(registry); 269 IntranetRedirectDetector::RegisterPrefs(registry);
269 IOThread::RegisterPrefs(registry); 270 IOThread::RegisterPrefs(registry);
270 network_time::NetworkTimeTracker::RegisterPrefs(registry); 271 network_time::NetworkTimeTracker::RegisterPrefs(registry);
271 PrefProxyConfigTrackerImpl::RegisterPrefs(registry); 272 PrefProxyConfigTrackerImpl::RegisterPrefs(registry);
272 ProfileInfoCache::RegisterPrefs(registry); 273 ProfileInfoCache::RegisterPrefs(registry);
273 profiles::RegisterPrefs(registry); 274 profiles::RegisterPrefs(registry);
274 rappor::RapporService::RegisterPrefs(registry); 275 rappor::RapporService::RegisterPrefs(registry);
275 RegisterScreenshotPrefs(registry); 276 RegisterScreenshotPrefs(registry);
276 SigninManagerFactory::RegisterPrefs(registry); 277 SigninManagerFactory::RegisterPrefs(registry);
277 ssl_config::SSLConfigServiceManager::RegisterPrefs(registry); 278 ssl_config::SSLConfigServiceManager::RegisterPrefs(registry);
279 startup_metric_utils::RegisterPrefs(registry);
278 web_resource::PromoResourceService::RegisterPrefs(registry); 280 web_resource::PromoResourceService::RegisterPrefs(registry);
279 281
280 #if defined(ENABLE_AUTOFILL_DIALOG) 282 #if defined(ENABLE_AUTOFILL_DIALOG)
281 autofill::AutofillDialogController::RegisterPrefs(registry); 283 autofill::AutofillDialogController::RegisterPrefs(registry);
282 #endif 284 #endif
283 285
284 #if defined(ENABLE_CONFIGURATION_POLICY) 286 #if defined(ENABLE_CONFIGURATION_POLICY)
285 policy::BrowserPolicyConnector::RegisterPrefs(registry); 287 policy::BrowserPolicyConnector::RegisterPrefs(registry);
286 policy::PolicyStatisticsCollector::RegisterPrefs(registry); 288 policy::PolicyStatisticsCollector::RegisterPrefs(registry);
287 #endif 289 #endif
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 592
591 // Added 12/1015. 593 // Added 12/1015.
592 profile_prefs->ClearPref(kURLsToRestoreOnStartupOld); 594 profile_prefs->ClearPref(kURLsToRestoreOnStartupOld);
593 profile_prefs->ClearPref(kRestoreStartupURLsMigrationTime); 595 profile_prefs->ClearPref(kRestoreStartupURLsMigrationTime);
594 596
595 // Added 12/2015. 597 // Added 12/2015.
596 profile_prefs->ClearPref(kRestoreOnStartupMigrated); 598 profile_prefs->ClearPref(kRestoreOnStartupMigrated);
597 } 599 }
598 600
599 } // namespace chrome 601 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | components/startup_metric_utils.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698