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

Unified Diff: chrome/browser/chromeos/first_run/metrics.h

Issue 131023003: Added UMA metrics for ChromeOS first-run UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
« no previous file with comments | « chrome/browser/chromeos/first_run/first_run_controller.cc ('k') | chrome/browser/chromeos/first_run/step.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « chrome/browser/chromeos/first_run/first_run_controller.cc ('k') | chrome/browser/chromeos/first_run/step.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698