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, |
+ // 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_ |