| Index: chrome/browser/ui/views/toolbar_view.cc
|
| ===================================================================
|
| --- chrome/browser/ui/views/toolbar_view.cc (revision 82144)
|
| +++ chrome/browser/ui/views/toolbar_view.cc (working copy)
|
| @@ -742,8 +742,8 @@
|
| return icon;
|
|
|
| // Draw the chrome app menu icon onto the canvas.
|
| - scoped_ptr<gfx::CanvasSkia> canvas(
|
| - new gfx::CanvasSkia(icon.width(), icon.height(), false));
|
| + scoped_ptr<gfx::CanvasSkia> canvas(new gfx::CanvasSkia);
|
| + canvas->Init(icon.width(), icon.height(), false);
|
| canvas->DrawBitmapInt(icon, 0, 0);
|
|
|
| SkBitmap badge;
|
|
|