Chromium Code Reviews| Index: chrome/browser/chromeos/first_run/metrics.h |
| diff --git a/chrome/browser/chromeos/first_run/metrics.h b/chrome/browser/chromeos/first_run/metrics.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f5a24b378fe2595d58f2360fba1d6a14d131f087 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/first_run/metrics.h |
| @@ -0,0 +1,26 @@ |
| +// Copyright 2013 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_CHROMEOS_FIRST_RUN_METRICS_H_ |
| +#define CHROME_BROWSER_CHROMEOS_FIRST_RUN_METRICS_H_ |
| + |
| +namespace chromeos { |
| +namespace first_run { |
| + |
| +enum TutorialCompletion { |
| + // User left tutorial before finish. |
| + kTutorialNotFinished, |
|
Alexei Svitkine (slow)
2014/01/15 16:02:38
I believe enums should use FOO_BAR style in Chromi
dzhioev (left Google)
2014/01/15 22:12:54
Both styles are allowed, furthermore Google Style
Alexei Svitkine (slow)
2014/01/15 22:21:36
Chromiums style overrides the Google one in this c
|
| + // Tutorial was completed with "Got It" button. |
| + kTutorialCompletedWithGotIt, |
| + // Tutorial was completed with "Keep Exploring" button, i.e. Help App was |
| + // launched after tutorial. |
| + kTutorialCompletedWithKeepExploring, |
| + // Must be the last element. |
| + kTutorialCompletionSize |
| +}; |
| + |
| +} // namespace first_run |
| +} // namespace chromeos |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_FIRST_RUN_METRICS_H_ |