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_FIRST_RUN_H_ 6 #define CHROME_BROWSER_CHROMEOS_FIRST_RUN_FIRST_RUN_H_ 7 8 namespace user_prefs { 9 class PrefRegistrySyncable; 10 } 11 12 namespace chromeos { 13 namespace first_run { 14 15 // Probably launches first-run dialog after session start depending on synced 16 // user prefs. This method should be called after user already logged in but 17 // session didn't started yet. 18 void MaybeLaunchDialogAfterSessionStart(); 19 20 // Launches overlay tutorial for current user. 21 void LaunchTutorial(); 22 23 } // namespace first_run 24 } // namespace chromeos 25 26 #endif // CHROME_BROWSER_CHROMEOS_FIRST_RUN_FIRST_RUN_H_ 27