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

Side by Side Diff: chrome/browser/metrics/chrome_metrics_service_accessor.h

Issue 495643002: Trigger the SW reporter to run once a week for users with UMA enabled. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Responding to comments Created 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_ 5 #ifndef CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_
6 #define CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_ 6 #define CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <string> 9 #include <string>
10 10
11 #include "base/gtest_prod_util.h" 11 #include "base/gtest_prod_util.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "chrome/browser/metrics/metrics_service_accessor.h" 13 #include "chrome/browser/metrics/metrics_service_accessor.h"
14 14
15 class ChromeBrowserMetricsServiceObserver; 15 class ChromeBrowserMetricsServiceObserver;
16 class ComponentUpdateService;
17 class PrefService;
16 class Profile; 18 class Profile;
17 19
18 namespace { 20 namespace {
19 class CrashesDOMHandler; 21 class CrashesDOMHandler;
20 class FlashDOMHandler; 22 class FlashDOMHandler;
21 } 23 }
22 24
25 namespace component_updater {
26 void ExecuteSwReporterIfRequired(ComponentUpdateService* cus,
27 PrefService* prefs);
28 }
29
23 namespace extensions { 30 namespace extensions {
24 class ExtensionDownloader; 31 class ExtensionDownloader;
25 class ManifestFetchData; 32 class ManifestFetchData;
26 class MetricsPrivateGetIsCrashReportingEnabledFunction; 33 class MetricsPrivateGetIsCrashReportingEnabledFunction;
27 } 34 }
28 35
29 namespace prerender { 36 namespace prerender {
30 bool IsOmniboxEnabled(Profile* profile); 37 bool IsOmniboxEnabled(Profile* profile);
31 } 38 }
32 39
33 namespace system_logs { 40 namespace system_logs {
34 class ChromeInternalLogSource; 41 class ChromeInternalLogSource;
35 } 42 }
36 43
37 // This class limits and documents access to metrics service helper methods. 44 // This class limits and documents access to metrics service helper methods.
38 // Since these methods are private, each user has to be explicitly declared 45 // Since these methods are private, each user has to be explicitly declared
39 // as a 'friend' below. 46 // as a 'friend' below.
40 class ChromeMetricsServiceAccessor : public MetricsServiceAccessor { 47 class ChromeMetricsServiceAccessor : public MetricsServiceAccessor {
41 private: 48 private:
49 friend void component_updater::ExecuteSwReporterIfRequired(
50 ComponentUpdateService* cus,
51 PrefService* prefs);
42 friend bool prerender::IsOmniboxEnabled(Profile* profile); 52 friend bool prerender::IsOmniboxEnabled(Profile* profile);
43 friend class ::ChromeBrowserMetricsServiceObserver; 53 friend class ::ChromeBrowserMetricsServiceObserver;
44 friend class ChromeRenderMessageFilter; 54 friend class ChromeRenderMessageFilter;
45 friend class ::CrashesDOMHandler; 55 friend class ::CrashesDOMHandler;
46 friend class DataReductionProxyChromeSettings; 56 friend class DataReductionProxyChromeSettings;
47 friend class extensions::ExtensionDownloader; 57 friend class extensions::ExtensionDownloader;
48 friend class extensions::ManifestFetchData; 58 friend class extensions::ManifestFetchData;
49 friend class extensions::MetricsPrivateGetIsCrashReportingEnabledFunction; 59 friend class extensions::MetricsPrivateGetIsCrashReportingEnabledFunction;
50 friend class ::FlashDOMHandler; 60 friend class ::FlashDOMHandler;
51 friend class system_logs::ChromeInternalLogSource; 61 friend class system_logs::ChromeInternalLogSource;
(...skipping 28 matching lines...) Expand all
80 // Same as RegisterSyntheticFieldTrial above, but takes a hash for the trial 90 // Same as RegisterSyntheticFieldTrial above, but takes a hash for the trial
81 // name, rather than computing it from the string. 91 // name, rather than computing it from the string.
82 static bool RegisterSyntheticFieldTrialWithNameHash( 92 static bool RegisterSyntheticFieldTrialWithNameHash(
83 uint32_t trial_name_hash, 93 uint32_t trial_name_hash,
84 const std::string& group_name); 94 const std::string& group_name);
85 95
86 DISALLOW_IMPLICIT_CONSTRUCTORS(ChromeMetricsServiceAccessor); 96 DISALLOW_IMPLICIT_CONSTRUCTORS(ChromeMetricsServiceAccessor);
87 }; 97 };
88 98
89 #endif // CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_ 99 #endif // CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698