Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: chrome/browser/profiles/profile_info_util.h

Issue 8700014: Utility to draw GAIA pictures (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 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_PROFILES_PROFILE_INFO_UTIL_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_INFO_UTIL_H_
7 #pragma once
8
9 #include "ui/gfx/image/image.h"
10
11 namespace profiles {
12
13 extern const int kAvatarIconWidth;
14 extern const int kAvatarIconHeight;
15
16 gfx::Image GetAvatarIconForMenu(const gfx::Image& image,
Robert Sesek 2011/11/28 15:30:15 These both should have comments.
sail 2011/11/28 15:39:39 Done.
17 bool is_gaia_picture);
18
19 gfx::Image GetAvatarIconForTitleBar(const gfx::Image& image,
20 bool is_gaia_picture,
21 int dst_width,
22 int dst_height);
23
24 }
25
26 #endif // CHROME_BROWSER_PROFILES_PROFILE_INFO_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698