| Index: chrome/browser/views/detachable_toolbar_view.cc
 | 
| ===================================================================
 | 
| --- chrome/browser/views/detachable_toolbar_view.cc	(revision 50661)
 | 
| +++ chrome/browser/views/detachable_toolbar_view.cc	(working copy)
 | 
| @@ -6,7 +6,7 @@
 | 
|  
 | 
|  #include "app/resource_bundle.h"
 | 
|  #include "chrome/browser/browser_theme_provider.h"
 | 
| -#include "gfx/canvas.h"
 | 
| +#include "gfx/canvas_skia.h"
 | 
|  #include "gfx/skia_util.h"
 | 
|  #include "grit/theme_resources.h"
 | 
|  #include "third_party/skia/include/core/SkBitmap.h"
 | 
| @@ -70,7 +70,7 @@
 | 
|    paint.setAntiAlias(true);
 | 
|    paint.setColor(theme_provider->GetColor(BrowserThemeProvider::COLOR_TOOLBAR));
 | 
|  
 | 
| -  canvas->drawRoundRect(
 | 
| +  canvas->AsCanvasSkia()->drawRoundRect(
 | 
|        rect, SkDoubleToScalar(roundness), SkDoubleToScalar(roundness), paint);
 | 
|  }
 | 
|  
 | 
| @@ -85,9 +85,9 @@
 | 
|    border_paint.setAlpha(96);
 | 
|    border_paint.setAntiAlias(true);
 | 
|  
 | 
| -  canvas->drawRoundRect(rect,
 | 
| -                        SkDoubleToScalar(roundness),
 | 
| -                        SkDoubleToScalar(roundness), border_paint);
 | 
| +  canvas->AsCanvasSkia()->drawRoundRect(
 | 
| +      rect, SkDoubleToScalar(roundness), SkDoubleToScalar(roundness),
 | 
| +      border_paint);
 | 
|  }
 | 
|  
 | 
|  // static
 | 
| @@ -106,7 +106,7 @@
 | 
|                  SkIntToScalar(vertical_padding + 1),
 | 
|                  SkIntToScalar(x + 1),
 | 
|                  SkIntToScalar(height / 2) };
 | 
| -  canvas->drawRect(rc, paint);
 | 
| +  canvas->AsCanvasSkia()->drawRect(rc, paint);
 | 
|  
 | 
|    // Draw the lower half of the divider.
 | 
|    SkPaint paint_down;
 | 
| @@ -118,5 +118,5 @@
 | 
|                       SkIntToScalar(height / 2),
 | 
|                       SkIntToScalar(x + 1),
 | 
|                       SkIntToScalar(height - vertical_padding) };
 | 
| -  canvas->drawRect(rc_down, paint_down);
 | 
| +  canvas->AsCanvasSkia()->drawRect(rc_down, paint_down);
 | 
|  }
 | 
| 
 |