summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/first_run/metrics.h
blob: b46e5c63cbad36d1b13355779b9fb9bc61b32e99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2014 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.
  TUTORIAL_NOT_FINISHED,

  // Tutorial was completed with "Got It" button.
  TUTORIAL_COMPLETED_WITH_GOT_IT,

  // Tutorial was completed with "Keep Exploring" button, i.e. Help App was
  // launched after tutorial.
  TUTORIAL_COMPLETED_WITH_KEEP_EXPLORING,

  // Must be the last element.
  TUTORIAL_COMPLETION_SIZE
};

}  // namespace first_run
}  // namespace chromeos

#endif  // CHROME_BROWSER_CHROMEOS_FIRST_RUN_METRICS_H_