Chromium Code Reviews| 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 |