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

Unified Diff: components/feature_engagement_tracker/internal/feature_config_condition_validator.cc

Issue 2911123003: Metrics for feature engagement tracker. (Closed)
Patch Set: Created 3 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
Index: components/feature_engagement_tracker/internal/feature_config_condition_validator.cc
diff --git a/components/feature_engagement_tracker/internal/feature_config_condition_validator.cc b/components/feature_engagement_tracker/internal/feature_config_condition_validator.cc
index fa8ce2a174ec12a73e4e042220bdfeda8e5e316a..ff6e1ad5ef11b33970289d2d762d988f48a9966e 100644
--- a/components/feature_engagement_tracker/internal/feature_config_condition_validator.cc
+++ b/components/feature_engagement_tracker/internal/feature_config_condition_validator.cc
@@ -25,7 +25,7 @@ ConditionValidator::Result FeatureConfigConditionValidator::MeetsConditions(
const AvailabilityModel& availability_model,
uint32_t current_day) const {
ConditionValidator::Result result(true);
- result.model_ready_ok = model.IsReady();
+ result.event_model_ready_ok = model.IsReady();
result.currently_showing_ok = !currently_showing_;
result.feature_enabled_ok = base::FeatureList::IsEnabled(feature);
result.config_ok = config.valid;

Powered by Google App Engine
This is Rietveld 408576698