Index: chrome/browser/ui/views/status_bubble_views.cc |
=================================================================== |
--- chrome/browser/ui/views/status_bubble_views.cc (revision 82144) |
+++ chrome/browser/ui/views/status_bubble_views.cc (working copy) |
@@ -414,7 +414,7 @@ |
SkPaint shadow_paint; |
shadow_paint.setFlags(SkPaint::kAntiAlias_Flag); |
shadow_paint.setColor(kShadowColor); |
- canvas->AsCanvasSkia()->drawPath(shadow_path, shadow_paint); |
+ canvas->AsCanvasSkia()->skia_canvas()->drawPath(shadow_path, shadow_paint); |
// Draw the bubble. |
rect.set(SkIntToScalar(kShadowThickness), |
@@ -423,7 +423,7 @@ |
SkIntToScalar(height - kShadowThickness)); |
SkPath path; |
path.addRoundRect(rect, rad, SkPath::kCW_Direction); |
- canvas->AsCanvasSkia()->drawPath(path, paint); |
+ canvas->AsCanvasSkia()->skia_canvas()->drawPath(path, paint); |
// Draw highlight text and then the text body. In order to make sure the text |
// is aligned to the right on RTL UIs, we mirror the text bounds if the |