0

Cleanup: fix some comments

BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6225004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71258 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
pkasting@chromium.org
2011-01-13 00:10:40 +00:00
parent 02ecbca18e
commit 0146711d88

@@ -51,7 +51,7 @@ class SkBitmap;
class IconUtil { class IconUtil {
public: public:
// Given an SkBitmap object, the function converts the bitmap to a Windows // Given an SkBitmap object, the function converts the bitmap to a Windows
// icon and returns the corresponding HICON handle. If the function can not // icon and returns the corresponding HICON handle. If the function cannot
// convert the bitmap, NULL is returned. // convert the bitmap, NULL is returned.
// //
// The client is responsible for destroying the icon when it is no longer // The client is responsible for destroying the icon when it is no longer
@@ -61,7 +61,7 @@ class IconUtil {
// Given a valid HICON handle representing an icon, this function converts // Given a valid HICON handle representing an icon, this function converts
// the icon into an SkBitmap object containing an ARGB bitmap using the // the icon into an SkBitmap object containing an ARGB bitmap using the
// dimensions specified in |s|. |s| must specify valid dimensions (both // dimensions specified in |s|. |s| must specify valid dimensions (both
// width() an height() must be greater than zero). If the function can // width() an height() must be greater than zero). If the function cannot
// convert the icon to a bitmap (most probably due to an invalid parameter), // convert the icon to a bitmap (most probably due to an invalid parameter),
// the return value is NULL. // the return value is NULL.
// //