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

Side by Side Diff: chrome/browser/chromeos/first_run/step_names.cc

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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/first_run/step_names.h" 5 #include "chrome/browser/chromeos/first_run/step_names.h"
6 6
7 namespace chromeos { 7 namespace chromeos {
8 namespace first_run { 8 namespace first_run {
9 9
10 // This values should be synced with ids of corresponding steps in HTML-side.
11 // Also there are metric recording how much time user spent on every step.
12 // Metric's name has format "CrosFirstRun.TimeSpentOn[StepName]Step", where
13 // |StepName| is camel-cased version of |step-name|. Corresponding record
14 // should be added to "histograms.xml" file for every step listed here.
10 const char kAppListStep[] = "app-list"; 15 const char kAppListStep[] = "app-list";
11 const char kTrayStep[] = "tray"; 16 const char kTrayStep[] = "tray";
12 const char kHelpStep[] = "help"; 17 const char kHelpStep[] = "help";
13 18
14 } // namespace first_run 19 } // namespace first_run
15 } // namespace chromeos 20 } // namespace chromeos
16 21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698