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 #ifndef CHROME_BROWSER_PREFS_PREF_METRICS_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_PREFS_PREF_METRICS_SERVICE_H_ |
6 #define CHROME_BROWSER_PREFS_PREF_METRICS_SERVICE_H_ | 6 #define CHROME_BROWSER_PREFS_PREF_METRICS_SERVICE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/memory/singleton.h" | 13 #include "base/memory/singleton.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
16 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" | 16 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" |
17 #include "components/keyed_service/core/keyed_service.h" | 17 #include "components/keyed_service/core/keyed_service.h" |
18 #include "components/syncable_prefs/synced_pref_change_registrar.h" | 18 #include "components/syncable_prefs/synced_pref_change_registrar.h" |
19 | 19 |
20 class PrefRegistrySimple; | 20 class PrefRegistrySimple; |
21 | 21 |
22 // PrefMetricsService is responsible for recording prefs-related UMA stats. | 22 // PrefMetricsService is responsible for recording prefs-related UMA stats. |
23 class PrefMetricsService : public KeyedService { | 23 class PrefMetricsService : public KeyedService { |
24 public: | 24 public: |
25 explicit PrefMetricsService(Profile* profile); | 25 explicit PrefMetricsService(Profile* profile); |
26 ~PrefMetricsService() override; | 26 ~PrefMetricsService() override; |
27 | 27 |
| 28 // Records metrics about the state of the homepage on launch. |
| 29 static void RecordHomePageLaunchMetrics(bool show_home_button, |
| 30 bool homepage_is_ntp, |
| 31 const GURL& homepage_url); |
| 32 |
28 class Factory : public BrowserContextKeyedServiceFactory { | 33 class Factory : public BrowserContextKeyedServiceFactory { |
29 public: | 34 public: |
30 static Factory* GetInstance(); | 35 static Factory* GetInstance(); |
31 static PrefMetricsService* GetForProfile(Profile* profile); | 36 static PrefMetricsService* GetForProfile(Profile* profile); |
32 private: | 37 private: |
33 friend struct base::DefaultSingletonTraits<Factory>; | 38 friend struct base::DefaultSingletonTraits<Factory>; |
34 | 39 |
35 Factory(); | 40 Factory(); |
36 ~Factory() override; | 41 ~Factory() override; |
37 | 42 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 | 91 |
87 std::unique_ptr<syncable_prefs::SyncedPrefChangeRegistrar> | 92 std::unique_ptr<syncable_prefs::SyncedPrefChangeRegistrar> |
88 synced_pref_change_registrar_; | 93 synced_pref_change_registrar_; |
89 | 94 |
90 base::WeakPtrFactory<PrefMetricsService> weak_factory_; | 95 base::WeakPtrFactory<PrefMetricsService> weak_factory_; |
91 | 96 |
92 DISALLOW_COPY_AND_ASSIGN(PrefMetricsService); | 97 DISALLOW_COPY_AND_ASSIGN(PrefMetricsService); |
93 }; | 98 }; |
94 | 99 |
95 #endif // CHROME_BROWSER_PREFS_PREF_METRICS_SERVICE_H_ | 100 #endif // CHROME_BROWSER_PREFS_PREF_METRICS_SERVICE_H_ |
OLD | NEW |