| 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..66ccd5fd35c2bd5de5741bd5fa8f787dc8964b9d
|
| --- /dev/null
|
| +++ b/chrome/browser/chromeos/first_run/metrics.h
|
| @@ -0,0 +1,26 @@
|
| +// 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.
|
| + 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_
|
|
|