OLD | NEW |
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 #ifndef CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ |
6 #define CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ | 6 #define CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ |
7 | 7 |
8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
9 #include "chrome/browser/profiles/profile_manager.h" | 9 #include "chrome/browser/profiles/profile_manager.h" |
10 #include "chrome/browser/profiles/profile_metrics.h" | 10 #include "chrome/browser/profiles/profile_metrics.h" |
11 #include "chrome/browser/ui/browser_window.h" | 11 #include "chrome/browser/ui/browser_window.h" |
12 #include "chrome/browser/ui/host_desktop.h" | |
13 #include "chrome/browser/ui/profile_chooser_constants.h" | 12 #include "chrome/browser/ui/profile_chooser_constants.h" |
14 #include "chrome/browser/ui/startup/startup_types.h" | 13 #include "chrome/browser/ui/startup/startup_types.h" |
| 14 #include "ui/gfx/host_desktop_type.h" |
15 | 15 |
16 class Profile; | 16 class Profile; |
17 namespace base { class FilePath; } | 17 namespace base { class FilePath; } |
18 | 18 |
19 namespace profiles { | 19 namespace profiles { |
20 | 20 |
21 // Different tutorials that can be displayed in the user manager. | 21 // Different tutorials that can be displayed in the user manager. |
22 enum UserManagerTutorialMode { | 22 enum UserManagerTutorialMode { |
23 USER_MANAGER_NO_TUTORIAL, // Does not display a tutorial. | 23 USER_MANAGER_NO_TUTORIAL, // Does not display a tutorial. |
24 USER_MANAGER_TUTORIAL_OVERVIEW, // Basic overview of new features. | 24 USER_MANAGER_TUTORIAL_OVERVIEW, // Basic overview of new features. |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 bool ShouldShowWelcomeUpgradeTutorial( | 133 bool ShouldShowWelcomeUpgradeTutorial( |
134 Profile* profile, TutorialMode tutorial_mode); | 134 Profile* profile, TutorialMode tutorial_mode); |
135 | 135 |
136 // Returns true if the tutorial informing the user about right-click user | 136 // Returns true if the tutorial informing the user about right-click user |
137 // switching should be shown, false otherwise. | 137 // switching should be shown, false otherwise. |
138 bool ShouldShowRightClickTutorial(Profile* profile); | 138 bool ShouldShowRightClickTutorial(Profile* profile); |
139 | 139 |
140 } // namespace profiles | 140 } // namespace profiles |
141 | 141 |
142 #endif // CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ | 142 #endif // CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ |
OLD | NEW |