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

Unified Diff: chrome/installer/util/experiment_metrics.cc

Issue 2889323004: Win 10 Inactive toast experiment metrics and storage modifications. (Closed)
Patch Set: Apply comments from 2898843002 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: chrome/installer/util/experiment_metrics.cc
diff --git a/chrome/installer/util/experiment_metrics.cc b/chrome/installer/util/experiment_metrics.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0c7fc67d15475fad343c2111ebe138b1d81ad5f5
--- /dev/null
+++ b/chrome/installer/util/experiment_metrics.cc
@@ -0,0 +1,24 @@
+// Copyright 2017 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.
+
+#include "chrome/installer/util/experiment_metrics.h"
+
+namespace installer {
+
+// static
grt (UTC plus 2) 2017/05/24 13:43:38 not static
nikunjb 2017/05/30 21:45:01 Done.
+bool ExperimentMetrics::InInitialState() const {
+ return state < kGroupAssigned;
+}
+
+bool ExperimentMetrics::InTerminalState() const {
+ return state == kSelectedNoThanks || state == kSelectedOpenChromeAndCrash ||
+ state == kSelectedOpenChromeAndNoCrash || state == kSelectedClose ||
+ state == kUserLogOff;
+}
+
+void ExperimentMetrics::SetState(State state) {
+ this->state = state;
+}
+
+} // namespace installer

Powered by Google App Engine
This is Rietveld 408576698