| Index: chrome/browser/web_applications/web_app_mac.mm
|
| diff --git a/chrome/browser/web_applications/web_app_mac.mm b/chrome/browser/web_applications/web_app_mac.mm
|
| index baa35676ef4b79662aa9f34317aeda8cbd00c335..9d901f498ef5a528c9cd28a304f6ea0a885a3064 100644
|
| --- a/chrome/browser/web_applications/web_app_mac.mm
|
| +++ b/chrome/browser/web_applications/web_app_mac.mm
|
| @@ -110,7 +110,7 @@ bool AddGfxImageToIconFamily(IconFamilyHandle icon_family,
|
| // have all the representations desired here for mac, from the kDesiredSizes
|
| // array in web_app.cc.
|
| SkBitmap bitmap = image.AsBitmap();
|
| - if (bitmap.config() != SkBitmap::kARGB_8888_Config ||
|
| + if (bitmap.colorType() != kN32_SkColorType ||
|
| bitmap.width() != bitmap.height()) {
|
| return false;
|
| }
|
|
|