| Index: chrome/browser/profiles/profile_avatar_icon_util.h
|
| diff --git a/chrome/browser/profiles/profile_avatar_icon_util.h b/chrome/browser/profiles/profile_avatar_icon_util.h
|
| index ea26029d85cbc567abb1bf57006b64b6f99c78dc..d1b5baac09b30e0a56ea12881fea45228c92bf78 100644
|
| --- a/chrome/browser/profiles/profile_avatar_icon_util.h
|
| +++ b/chrome/browser/profiles/profile_avatar_icon_util.h
|
| @@ -5,8 +5,17 @@
|
| #ifndef CHROME_BROWSER_PROFILES_PROFILE_AVATAR_ICON_UTIL_H_
|
| #define CHROME_BROWSER_PROFILES_PROFILE_AVATAR_ICON_UTIL_H_
|
|
|
| +#include <string>
|
| +
|
| #include "third_party/skia/include/core/SkColor.h"
|
| -#include "ui/gfx/image/image.h"
|
| +
|
| +namespace base {
|
| +class FilePath;
|
| +}
|
| +
|
| +namespace gfx {
|
| +class Image;
|
| +}
|
|
|
| namespace profiles {
|
|
|
| @@ -33,6 +42,9 @@ int GetDefaultAvatarIconResourceIDAtIndex(size_t index);
|
| // Gets the resource filename of the default avatar icon at |index|.
|
| const char* GetDefaultAvatarIconFileNameAtIndex(size_t index);
|
|
|
| +// Gets the full path of the high res avatar icon at |index|.
|
| +base::FilePath GetPathOfHighResAvatarAtIndex(size_t index);
|
| +
|
| // Returns a URL for the default avatar icon with specified index.
|
| std::string GetDefaultAvatarIconUrl(size_t index);
|
|
|
|
|