Index: chrome/browser/history/top_sites_unittest.cc |
=================================================================== |
--- chrome/browser/history/top_sites_unittest.cc (revision 137075) |
+++ chrome/browser/history/top_sites_unittest.cc (working copy) |
@@ -166,11 +166,11 @@ |
// Creates a bitmap of the specified color. Caller takes ownership. |
gfx::Image CreateBitmap(SkColor color) { |
- SkBitmap thumbnail; |
- thumbnail.setConfig(SkBitmap::kARGB_8888_Config, 4, 4); |
- thumbnail.allocPixels(); |
- thumbnail.eraseColor(color); |
- return gfx::Image(thumbnail); // adds ref. |
+ SkBitmap* thumbnail = new SkBitmap; |
+ thumbnail->setConfig(SkBitmap::kARGB_8888_Config, 4, 4); |
+ thumbnail->allocPixels(); |
+ thumbnail->eraseColor(color); |
+ return gfx::Image(thumbnail); // takes ownership. |
} |
// Forces top sites to load top sites from history, then recreates top sites. |