| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_UI_PROFILE_CHOOSER_CONSTANTS_H_ | 5 #ifndef CHROME_BROWSER_UI_PROFILE_CHOOSER_CONSTANTS_H_ |
| 6 #define CHROME_BROWSER_UI_PROFILE_CHOOSER_CONSTANTS_H_ | 6 #define CHROME_BROWSER_UI_PROFILE_CHOOSER_CONSTANTS_H_ |
| 7 | 7 |
| 8 namespace profiles { | 8 namespace profiles { |
| 9 | 9 |
| 10 // Different views that can be displayed in the profile chooser bubble. | 10 // Different views that can be displayed in the profile chooser bubble. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 // Tutorial modes that can be displayed in the profile chooser bubble. | 30 // Tutorial modes that can be displayed in the profile chooser bubble. |
| 31 enum TutorialMode { | 31 enum TutorialMode { |
| 32 // No tutorial card shown. | 32 // No tutorial card shown. |
| 33 TUTORIAL_MODE_NONE, | 33 TUTORIAL_MODE_NONE, |
| 34 // A tutorial card shown to confirm Chrome signin. | 34 // A tutorial card shown to confirm Chrome signin. |
| 35 TUTORIAL_MODE_CONFIRM_SIGNIN, | 35 TUTORIAL_MODE_CONFIRM_SIGNIN, |
| 36 // A tutorial card shown to introduce an upgrade user to the new avatar menu. | 36 // A tutorial card shown to introduce an upgrade user to the new avatar menu. |
| 37 TUTORIAL_MODE_WELCOME_UPGRADE, | 37 TUTORIAL_MODE_WELCOME_UPGRADE, |
| 38 // A tutorial card shown to display the signin errors. | 38 // A tutorial card shown to display the signin errors. |
| 39 TUTORIAL_MODE_SHOW_ERROR, | 39 TUTORIAL_MODE_SHOW_ERROR, |
| 40 // A tutorial card shown to inform users about right-click user switching. |
| 41 TUTORIAL_MODE_RIGHT_CLICK_SWITCHING, |
| 40 }; | 42 }; |
| 41 | 43 |
| 42 }; // namespace profiles | 44 }; // namespace profiles |
| 43 | 45 |
| 44 #endif // CHROME_BROWSER_UI_PROFILE_CHOOSER_CONSTANTS_H_ | 46 #endif // CHROME_BROWSER_UI_PROFILE_CHOOSER_CONSTANTS_H_ |
| OLD | NEW |