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