| Index: chrome/browser/chromeos/first_run/first_run.cc
|
| diff --git a/chrome/browser/chromeos/first_run/first_run.cc b/chrome/browser/chromeos/first_run/first_run.cc
|
| index d6ac72f38ce43abdfb6936105197572da24bc5f8..ecbd3a5d2c442297fa1cf6dfbe0784041248b015 100644
|
| --- a/chrome/browser/chromeos/first_run/first_run.cc
|
| +++ b/chrome/browser/chromeos/first_run/first_run.cc
|
| @@ -3,6 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| #include "base/command_line.h"
|
| +#include "base/metrics/histogram.h"
|
| #include "chrome/browser/chrome_notification_types.h"
|
| #include "chrome/browser/chromeos/first_run/first_run_controller.h"
|
| #include "chrome/browser/chromeos/login/user_manager.h"
|
| @@ -87,6 +88,7 @@ void MaybeLaunchDialogAfterSessionStart() {
|
| }
|
|
|
| void LaunchTutorial() {
|
| + UMA_HISTOGRAM_BOOLEAN("CrosFirstRun.TutorialLaunched", true);
|
| FirstRunController::Start();
|
| }
|
|
|
|
|