Index: chrome/browser/extensions/api/notifications/notifications_api.cc |
diff --git a/chrome/browser/extensions/api/notifications/notifications_api.cc b/chrome/browser/extensions/api/notifications/notifications_api.cc |
index e78798e56482778adcff83e894975c915e66f645..bd4054dc2f944db356f481eb01612fe767c5a78f 100644 |
--- a/chrome/browser/extensions/api/notifications/notifications_api.cc |
+++ b/chrome/browser/extensions/api/notifications/notifications_api.cc |
@@ -102,8 +102,7 @@ bool NotificationBitmapToGfxImage( |
} |
// TODO(dewittj): Handle HiDPI images. |
- ui::ScaleFactor scale_factor(ui::SCALE_FACTOR_100P); |
- gfx::ImageSkia skia(gfx::ImageSkiaRep(bitmap, scale_factor)); |
+ gfx::ImageSkia skia(gfx::ImageSkiaRep(bitmap, 1.0f)); |
*return_image = gfx::Image(skia); |
return true; |
} |