blob: d7ae6822640499b404e4b973e9897b7be2d1de17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_
#define CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_
#include <stdint.h>
#include <string>
#include "base/gtest_prod_util.h"
#include "base/macros.h"
#include "chrome/browser/metrics/metrics_reporting_state.h"
#include "components/metrics/metrics_service_accessor.h"
class BrowserProcessImpl;
class ChromeExtensionDownloaderFactory;
class Profile;
namespace {
class CrashesDOMHandler;
class FlashDOMHandler;
}
namespace chrome_browser {
void SetupPreReadFieldTrial();
}
namespace component_updater {
class ComponentUpdateService;
}
namespace domain_reliability {
class DomainReliabilityServiceFactory;
}
namespace extensions {
class ChromeExtensionWebContentsObserver;
class FileManagerPrivateIsUMAEnabledFunction;
class MetricsPrivateGetIsCrashReportingEnabledFunction;
}
namespace options {
class BrowserOptionsHandler;
}
namespace prerender {
bool IsOmniboxEnabled(Profile* profile);
}
namespace safe_browsing {
class DownloadSBClient;
class IncidentReportingService;
class SafeBrowsingService;
class SafeBrowsingUIManager;
class SRTFetcher;
}
namespace speech {
class ChromeSpeechRecognitionManagerDelegate;
}
namespace system_logs {
class ChromeInternalLogSource;
}
// This class limits and documents access to metrics service helper methods.
// Since these methods are private, each user has to be explicitly declared
// as a 'friend' below.
class ChromeMetricsServiceAccessor : public metrics::MetricsServiceAccessor {
private:
friend class ::CrashesDOMHandler;
friend class ::FlashDOMHandler;
friend class BrowserProcessImpl;
friend void chrome_browser::SetupPreReadFieldTrial();
friend class ChromeExtensionDownloaderFactory;
friend class ChromeMetricsServicesManagerClient;
friend class ChromeRenderMessageFilter;
friend class DataReductionProxyChromeSettings;
friend class domain_reliability::DomainReliabilityServiceFactory;
friend class extensions::ChromeExtensionWebContentsObserver;
friend class extensions::FileManagerPrivateIsUMAEnabledFunction;
friend class extensions::MetricsPrivateGetIsCrashReportingEnabledFunction;
friend void InitiateMetricsReportingChange(
bool, const OnMetricsReportingCallbackType&);
friend class options::BrowserOptionsHandler;
friend bool prerender::IsOmniboxEnabled(Profile* profile);
friend class safe_browsing::IncidentReportingService;
friend class speech::ChromeSpeechRecognitionManagerDelegate;
friend class StackSamplingConfiguration;
friend class system_logs::ChromeInternalLogSource;
friend class UmaSessionStats;
friend class safe_browsing::SRTFetcher;
friend class safe_browsing::DownloadSBClient;
friend class safe_browsing::SafeBrowsingService;
friend class safe_browsing::SafeBrowsingUIManager;
FRIEND_TEST_ALL_PREFIXES(ChromeMetricsServiceAccessorTest,
MetricsReportingEnabled);
// Returns true if metrics reporting is enabled.
// TODO(gayane): Consolidate metric prefs on all platforms.
// http://crbug.com/362192, http://crbug.com/532084
static bool IsMetricsAndCrashReportingEnabled();
// Calls metrics::MetricsServiceAccessor::RegisterSyntheticFieldTrial() with
// g_browser_process->metrics_service(). See that function's declaration for
// details.
static bool RegisterSyntheticFieldTrial(const std::string& trial_name,
const std::string& group_name);
// Calls
// metrics::MetricsServiceAccessor::RegisterSyntheticFieldTrialWithNameHash()
// with g_browser_process->metrics_service(). See that function's declaration
// for details.
static bool RegisterSyntheticFieldTrialWithNameHash(
uint32_t trial_name_hash,
const std::string& group_name);
DISALLOW_IMPLICIT_CONSTRUCTORS(ChromeMetricsServiceAccessor);
};
#endif // CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_ACCESSOR_H_
|