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_PROFILES_PROFILE_AVATAR_ICON_UTIL_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_AVATAR_ICON_UTIL_H_ |
6 #define CHROME_BROWSER_PROFILES_PROFILE_AVATAR_ICON_UTIL_H_ | 6 #define CHROME_BROWSER_PROFILES_PROFILE_AVATAR_ICON_UTIL_H_ |
7 | 7 |
8 #include "third_party/skia/include/core/SkColor.h" | 8 #include "third_party/skia/include/core/SkColor.h" |
9 #include "ui/gfx/image/image.h" | 9 #include "ui/gfx/image/image.h" |
10 | 10 |
11 namespace profiles { | 11 namespace profiles { |
12 | 12 |
13 // Avatar access. | 13 // Avatar access. |
14 extern const char kGAIAPictureFileName[]; | 14 extern const char kGAIAPictureFileName[]; |
15 extern const char kHighResAvatarFolderName[]; | 15 extern const char kHighResAvatarFolderName[]; |
16 | 16 |
17 // Avatar formatting. | 17 // Avatar formatting. |
18 extern const int kAvatarIconWidth; | 18 extern const int kAvatarIconWidth; |
19 extern const int kAvatarIconHeight; | 19 extern const int kAvatarIconHeight; |
20 extern const int kAvatarIconPadding; | 20 extern const int kAvatarIconPadding; |
21 extern const SkColor kAvatarTutorialBackgroundColor; | 21 extern const SkColor kAvatarTutorialBackgroundColor; |
22 extern const SkColor kAvatarTutorialContentTextColor; | 22 extern const SkColor kAvatarTutorialContentTextColor; |
23 extern const SkColor kAvatarBubbleAccountsBackgroundColor; | 23 extern const SkColor kAvatarBubbleAccountsBackgroundColor; |
24 | 24 |
25 // Gets the number of default avatar icons that exist. | 25 // Gets the number of default avatar icons that exist. |
26 size_t GetDefaultAvatarIconCount(); | 26 size_t GetDefaultAvatarIconCount(); |
27 | 27 |
| 28 // Gets the index for the (grey silhouette) avatar used as a placeholder. |
| 29 int GetPlaceholderAvatarIndex(); |
| 30 |
| 31 // Gets the resource ID of the placeholder avatar icon. |
| 32 int GetPlaceholderAvatarIconResourceID(); |
| 33 |
28 // Gets the number of generic avatar icons that exist. | 34 // Gets the number of generic avatar icons that exist. |
29 size_t GetGenericAvatarIconCount(); | 35 size_t GetGenericAvatarIconCount(); |
30 | 36 |
31 // Gets the resource ID of the default avatar icon at |index|. | 37 // Gets the resource ID of the default avatar icon at |index|. |
32 int GetDefaultAvatarIconResourceIDAtIndex(size_t index); | 38 int GetDefaultAvatarIconResourceIDAtIndex(size_t index); |
33 | 39 |
34 // Gets the resource filename of the default avatar icon at |index|. | 40 // Gets the resource filename of the default avatar icon at |index|. |
35 const char* GetDefaultAvatarIconFileNameAtIndex(size_t index); | 41 const char* GetDefaultAvatarIconFileNameAtIndex(size_t index); |
36 | 42 |
| 43 // Gets the file name of an avatar that has no high res version. |
| 44 const char* GetNoHighResAvatarFileName(); |
| 45 |
37 // Returns a URL for the default avatar icon with specified index. | 46 // Returns a URL for the default avatar icon with specified index. |
38 std::string GetDefaultAvatarIconUrl(size_t index); | 47 std::string GetDefaultAvatarIconUrl(size_t index); |
39 | 48 |
40 // Checks if |index| is a valid avatar icon index | 49 // Checks if |index| is a valid avatar icon index |
41 bool IsDefaultAvatarIconIndex(size_t index); | 50 bool IsDefaultAvatarIconIndex(size_t index); |
42 | 51 |
43 // Checks if the given URL points to one of the default avatar icons. If it | 52 // Checks if the given URL points to one of the default avatar icons. If it |
44 // is, returns true and its index through |icon_index|. If not, returns false. | 53 // is, returns true and its index through |icon_index|. If not, returns false. |
45 bool IsDefaultAvatarIconUrl(const std::string& icon_url, size_t *icon_index); | 54 bool IsDefaultAvatarIconUrl(const std::string& icon_url, size_t *icon_index); |
46 // Returns a version of |image| of a specific size. Note that no checks are | 55 // Returns a version of |image| of a specific size. Note that no checks are |
(...skipping 14 matching lines...) Expand all Loading... |
61 // Returns a version of |image| suitable for use in title bars. The returned | 70 // Returns a version of |image| suitable for use in title bars. The returned |
62 // image is scaled to fit |dst_width| and |dst_height|. | 71 // image is scaled to fit |dst_width| and |dst_height|. |
63 gfx::Image GetAvatarIconForTitleBar(const gfx::Image& image, | 72 gfx::Image GetAvatarIconForTitleBar(const gfx::Image& image, |
64 bool is_rectangle, | 73 bool is_rectangle, |
65 int dst_width, | 74 int dst_width, |
66 int dst_height); | 75 int dst_height); |
67 | 76 |
68 } // namespace profiles | 77 } // namespace profiles |
69 | 78 |
70 #endif // CHROME_BROWSER_PROFILES_PROFILE_AVATAR_ICON_UTIL_H_ | 79 #endif // CHROME_BROWSER_PROFILES_PROFILE_AVATAR_ICON_UTIL_H_ |
OLD | NEW |