| OLD | NEW | 
|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/pref_metrics_service.h" | 5 #include "chrome/browser/prefs/pref_metrics_service.h" | 
| 6 | 6 | 
|  | 7 #include <stddef.h> | 
|  | 8 | 
| 7 #include "base/bind.h" | 9 #include "base/bind.h" | 
| 8 #include "base/command_line.h" | 10 #include "base/command_line.h" | 
| 9 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" | 
| 10 #include "base/prefs/pref_registry_simple.h" | 12 #include "base/prefs/pref_registry_simple.h" | 
| 11 #include "base/prefs/pref_service.h" | 13 #include "base/prefs/pref_service.h" | 
| 12 #include "base/strings/string_number_conversions.h" | 14 #include "base/strings/string_number_conversions.h" | 
|  | 15 #include "build/build_config.h" | 
| 13 #include "chrome/browser/browser_process.h" | 16 #include "chrome/browser/browser_process.h" | 
| 14 #include "chrome/browser/prefs/pref_service_syncable_util.h" | 17 #include "chrome/browser/prefs/pref_service_syncable_util.h" | 
| 15 #include "chrome/browser/prefs/session_startup_pref.h" | 18 #include "chrome/browser/prefs/session_startup_pref.h" | 
| 16 #include "chrome/browser/profiles/incognito_helpers.h" | 19 #include "chrome/browser/profiles/incognito_helpers.h" | 
| 17 #include "chrome/browser/profiles/profile.h" | 20 #include "chrome/browser/profiles/profile.h" | 
| 18 #include "chrome/browser/search_engines/template_url_service_factory.h" | 21 #include "chrome/browser/search_engines/template_url_service_factory.h" | 
| 19 #include "chrome/browser/ui/tabs/pinned_tab_codec.h" | 22 #include "chrome/browser/ui/tabs/pinned_tab_codec.h" | 
| 20 #include "chrome/common/pref_names.h" | 23 #include "chrome/common/pref_names.h" | 
| 21 #include "chrome/common/url_constants.h" | 24 #include "chrome/common/url_constants.h" | 
| 22 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 25 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 246 } | 249 } | 
| 247 | 250 | 
| 248 bool PrefMetricsService::Factory::ServiceIsNULLWhileTesting() const { | 251 bool PrefMetricsService::Factory::ServiceIsNULLWhileTesting() const { | 
| 249   return false; | 252   return false; | 
| 250 } | 253 } | 
| 251 | 254 | 
| 252 content::BrowserContext* PrefMetricsService::Factory::GetBrowserContextToUse( | 255 content::BrowserContext* PrefMetricsService::Factory::GetBrowserContextToUse( | 
| 253     content::BrowserContext* context) const { | 256     content::BrowserContext* context) const { | 
| 254   return chrome::GetBrowserContextRedirectedInIncognito(context); | 257   return chrome::GetBrowserContextRedirectedInIncognito(context); | 
| 255 } | 258 } | 
| OLD | NEW | 
|---|