| Index: chrome/browser/profiles/profile_info_util.cc
|
| diff --git a/chrome/browser/profiles/profile_info_util.cc b/chrome/browser/profiles/profile_info_util.cc
|
| index 0f8b1e5f85702661c30fe587eac555d6cd236082..27afd45318274a8b9b312f538036ecfb31a45dbe 100644
|
| --- a/chrome/browser/profiles/profile_info_util.cc
|
| +++ b/chrome/browser/profiles/profile_info_util.cc
|
| @@ -153,6 +153,10 @@ void AvatarImageSource::Draw(gfx::Canvas* canvas) {
|
|
|
| } // namespace internal
|
|
|
| +bool AvatarIconNeedsResizing(const gfx::Image& image) {
|
| + return image.Width() > kAvatarIconWidth || image.Height() > kAvatarIconHeight;
|
| +}
|
| +
|
| gfx::Image GetSizedAvatarIconWithBorder(const gfx::Image& image,
|
| bool is_rectangle,
|
| int width, int height) {
|
|
|