| Index: chrome/browser/ui/views/dropdown_bar_view.cc
|
| diff --git a/chrome/browser/ui/views/dropdown_bar_view.cc b/chrome/browser/ui/views/dropdown_bar_view.cc
|
| index 4efcd28ceb38f08cb6e4c35c31011c7502a55dd2..0c76e9f5ea8ea9c2c88d8c007836905d2b2947ab 100644
|
| --- a/chrome/browser/ui/views/dropdown_bar_view.cc
|
| +++ b/chrome/browser/ui/views/dropdown_bar_view.cc
|
| @@ -111,11 +111,13 @@ void DropdownBarView::OnPaint(gfx::Canvas* canvas) {
|
|
|
| if (animation_offset() > 0) {
|
| gfx::Canvas animating_edges(
|
| - gfx::Size(bounds().width(), kAnimatingEdgeHeight), false);
|
| + gfx::Size(bounds().width(), kAnimatingEdgeHeight),
|
| + canvas->scale_factor(),
|
| + false);
|
| canvas->Translate(bounds().origin());
|
| OnPaintBackground(&animating_edges);
|
| OnPaintBorder(&animating_edges);
|
| - canvas->DrawImageInt(animating_edges.ExtractBitmap(), bounds().x(),
|
| + canvas->DrawImageInt(animating_edges.ExtractImageRep(), bounds().x(),
|
| animation_offset());
|
| }
|
| }
|
|
|