| 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 #include "third_party/skia/include/core/SkColor.h" |
| 9 |
| 8 namespace profiles { | 10 namespace profiles { |
| 9 | 11 |
| 12 static const SkColor kHoverColor = SkColorSetRGB(0xEA, 0xEA, 0xEA); |
| 13 |
| 10 // Different views that can be displayed in the profile chooser bubble. | 14 // Different views that can be displayed in the profile chooser bubble. |
| 11 enum BubbleViewMode { | 15 enum BubbleViewMode { |
| 12 // Shows the default avatar bubble. | 16 // Shows the default avatar bubble. |
| 13 BUBBLE_VIEW_MODE_PROFILE_CHOOSER, | 17 BUBBLE_VIEW_MODE_PROFILE_CHOOSER, |
| 14 // Shows a list of accounts for the active user. | 18 // Shows a list of accounts for the active user. |
| 15 BUBBLE_VIEW_MODE_ACCOUNT_MANAGEMENT, | 19 BUBBLE_VIEW_MODE_ACCOUNT_MANAGEMENT, |
| 16 // Shows a web view for primary sign in. | 20 // Shows a web view for primary sign in. |
| 17 BUBBLE_VIEW_MODE_GAIA_SIGNIN, | 21 BUBBLE_VIEW_MODE_GAIA_SIGNIN, |
| 18 // Shows a web view for adding secondary accounts. | 22 // Shows a web view for adding secondary accounts. |
| 19 BUBBLE_VIEW_MODE_GAIA_ADD_ACCOUNT, | 23 BUBBLE_VIEW_MODE_GAIA_ADD_ACCOUNT, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 37 TUTORIAL_MODE_WELCOME_UPGRADE, | 41 TUTORIAL_MODE_WELCOME_UPGRADE, |
| 38 // A tutorial card shown to display the signin errors. | 42 // A tutorial card shown to display the signin errors. |
| 39 TUTORIAL_MODE_SHOW_ERROR, | 43 TUTORIAL_MODE_SHOW_ERROR, |
| 40 // A tutorial card shown to inform users about right-click user switching. | 44 // A tutorial card shown to inform users about right-click user switching. |
| 41 TUTORIAL_MODE_RIGHT_CLICK_SWITCHING, | 45 TUTORIAL_MODE_RIGHT_CLICK_SWITCHING, |
| 42 }; | 46 }; |
| 43 | 47 |
| 44 }; // namespace profiles | 48 }; // namespace profiles |
| 45 | 49 |
| 46 #endif // CHROME_BROWSER_UI_PROFILE_CHOOSER_CONSTANTS_H_ | 50 #endif // CHROME_BROWSER_UI_PROFILE_CHOOSER_CONSTANTS_H_ |
| OLD | NEW |