| 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 "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "chrome/browser/profiles/profile_manager.h" | 10 #include "chrome/browser/profiles/profile_manager.h" |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 void BubbleViewModeFromAvatarBubbleMode( | 141 void BubbleViewModeFromAvatarBubbleMode( |
| 142 BrowserWindow::AvatarBubbleMode mode, | 142 BrowserWindow::AvatarBubbleMode mode, |
| 143 BubbleViewMode* bubble_view_mode, | 143 BubbleViewMode* bubble_view_mode, |
| 144 TutorialMode* tutorial_mode); | 144 TutorialMode* tutorial_mode); |
| 145 | 145 |
| 146 // Returns true if the Welcome/Upgrade tutorial bubble should be shown to the | 146 // Returns true if the Welcome/Upgrade tutorial bubble should be shown to the |
| 147 // user, false otherwise. | 147 // user, false otherwise. |
| 148 bool ShouldShowWelcomeUpgradeTutorial( | 148 bool ShouldShowWelcomeUpgradeTutorial( |
| 149 Profile* profile, TutorialMode tutorial_mode); | 149 Profile* profile, TutorialMode tutorial_mode); |
| 150 | 150 |
| 151 // Returns true if the tutorial informing the user about right-click user | |
| 152 // switching should be shown, false otherwise. | |
| 153 bool ShouldShowRightClickTutorial(Profile* profile); | |
| 154 | |
| 155 } // namespace profiles | 151 } // namespace profiles |
| 156 | 152 |
| 157 #endif // CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ | 153 #endif // CHROME_BROWSER_PROFILES_PROFILE_WINDOW_H_ |
| OLD | NEW |