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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_FIRST_RUN_METRICS_H_
6 #define CHROME_BROWSER_CHROMEOS_FIRST_RUN_METRICS_H_
7
8 namespace chromeos {
9 namespace first_run {
10
11 enum TutorialCompletion {
12 // User left tutorial before finish.
13 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
14 // Tutorial was completed with "Got It" button.
15 kTutorialCompletedWithGotIt,
16 // Tutorial was completed with "Keep Exploring" button, i.e. Help App was
17 // launched after tutorial.
18 kTutorialCompletedWithKeepExploring,
19 // Must be the last element.
20 kTutorialCompletionSize
21 };
22
23 } // namespace first_run
24 } // namespace chromeos
25
26 #endif // CHROME_BROWSER_CHROMEOS_FIRST_RUN_METRICS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698