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

Unified Diff: components/metrics/metrics_state_manager.h

Issue 1958003003: Splitting the concept of UMA consent, and should UMA report. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/metrics/metrics_service_unittest.cc ('k') | components/metrics/metrics_state_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/metrics_state_manager.h
diff --git a/components/metrics/metrics_state_manager.h b/components/metrics/metrics_state_manager.h
index eafedc7a02c6178a4c9feb3aebc0af3bf1aa52ef..957d9a9d84748319029bde8576012c2a6a2dd355 100644
--- a/components/metrics/metrics_state_manager.h
+++ b/components/metrics/metrics_state_manager.h
@@ -20,6 +20,7 @@ class PrefRegistrySimple;
namespace metrics {
class ClonedInstallDetector;
+class EnabledStateProvider;
// Responsible for managing MetricsService state prefs, specifically the UMA
// client id and low entropy source. Code outside the metrics directory should
@@ -38,7 +39,9 @@ class MetricsStateManager {
virtual ~MetricsStateManager();
- // Returns true if the user opted in to sending metric reports.
+ // Returns true if the user has consented to sending metric reports, and there
+ // is no other reason to disable reporting. One such reason is client
+ // sampling, and this client isn't in the sample.
bool IsMetricsReportingEnabled();
// Returns the client ID for this client, or the empty string if the user is
@@ -69,7 +72,7 @@ class MetricsStateManager {
// of the class exists at a time. Returns NULL if an instance exists already.
static std::unique_ptr<MetricsStateManager> Create(
PrefService* local_state,
- const base::Callback<bool(void)>& is_reporting_enabled_callback,
+ EnabledStateProvider* enabled_state_provider,
const StoreClientInfoCallback& store_client_info,
const LoadClientInfoCallback& load_client_info);
@@ -94,17 +97,16 @@ class MetricsStateManager {
ENTROPY_SOURCE_ENUM_SIZE,
};
- // Creates the MetricsStateManager with the given |local_state|. Calls
- // |is_reporting_enabled_callback| to query whether metrics reporting is
- // enabled. Clients should instead use Create(), which enforces that a single
- // instance of this class be alive at any given time.
+ // Creates the MetricsStateManager with the given |local_state|. Uses
+ // |enabled_state_provider| to query whether there is consent for metrics
+ // reporting, and if it is enabled. Clients should instead use Create(), which
+ // enforces that a single instance of this class be alive at any given time.
// |store_client_info| should back up client info to persistent storage such
// that it is later retrievable by |load_client_info|.
- MetricsStateManager(
- PrefService* local_state,
- const base::Callback<bool(void)>& is_reporting_enabled_callback,
- const StoreClientInfoCallback& store_client_info,
- const LoadClientInfoCallback& load_client_info);
+ MetricsStateManager(PrefService* local_state,
+ EnabledStateProvider* enabled_state_provider,
+ const StoreClientInfoCallback& store_client_info,
+ const LoadClientInfoCallback& load_client_info);
// Backs up the current client info via |store_client_info_|.
void BackUpCurrentClientInfo();
@@ -144,9 +146,9 @@ class MetricsStateManager {
// Weak pointer to the local state prefs store.
PrefService* const local_state_;
- // A callback run by this MetricsStateManager to know whether reporting is
- // enabled.
- const base::Callback<bool(void)> is_reporting_enabled_callback_;
+ // Weak pointer to an enabled state provider. Used to know whether the user
+ // has consented to reporting, and if reporting should be done.
+ EnabledStateProvider* enabled_state_provider_;
// A callback run during client id creation so this MetricsStateManager can
// store a backup of the newly generated ID.
« no previous file with comments | « components/metrics/metrics_service_unittest.cc ('k') | components/metrics/metrics_state_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698