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
3 // found in the LICENSE file.
4 
5 #ifndef CHROME_BROWSER_UI_PROFILE_CHOOSER_CONSTANTS_H_
6 #define CHROME_BROWSER_UI_PROFILE_CHOOSER_CONSTANTS_H_
7 
8 #include "third_party/skia/include/core/SkColor.h"
9 
10 namespace profiles {
11 
12 static const SkColor kHoverColor = SkColorSetRGB(0xEA, 0xEA, 0xEA);
13 
14 // Different views that can be displayed in the profile chooser bubble.
15 enum BubbleViewMode {
16   // Shows the default avatar bubble.
17   BUBBLE_VIEW_MODE_PROFILE_CHOOSER,
18   // Shows a web view for primary sign in.
19   BUBBLE_VIEW_MODE_GAIA_SIGNIN,
20   // Shows a web view for adding secondary accounts.
21   BUBBLE_VIEW_MODE_GAIA_ADD_ACCOUNT,
22   // Shows a web view for reauthenticating an account.
23   BUBBLE_VIEW_MODE_GAIA_REAUTH,
24   // Shows a view for incognito that displays the number of incognito windows.
25   BUBBLE_VIEW_MODE_INCOGNITO,
26 };
27 
28 }  // namespace profiles
29 
30 #endif  // CHROME_BROWSER_UI_PROFILE_CHOOSER_CONSTANTS_H_
31