| Index: chrome/browser/ui/views/default_search_view.cc
|
| diff --git a/chrome/browser/ui/views/default_search_view.cc b/chrome/browser/ui/views/default_search_view.cc
|
| index 5245317ac64a06e9a963754d8958745db67cc738..8ec0225f8888aa634c225225439c437649a655aa 100644
|
| --- a/chrome/browser/ui/views/default_search_view.cc
|
| +++ b/chrome/browser/ui/views/default_search_view.cc
|
| @@ -135,13 +135,13 @@ DefaultSearchView::~DefaultSearchView() {
|
|
|
| void DefaultSearchView::OnPaint(gfx::Canvas* canvas) {
|
| // Fill in behind the background image with the standard gray toolbar color.
|
| - canvas->FillRect(GetThemeProvider()->GetColor(ThemeService::COLOR_TOOLBAR),
|
| - gfx::Rect(0, 0, width(), background_image_->height()));
|
| + canvas->FillRect(gfx::Rect(0, 0, width(), background_image_->height()),
|
| + GetThemeProvider()->GetColor(ThemeService::COLOR_TOOLBAR));
|
| // The rest of the dialog background should be white.
|
| DCHECK(height() > background_image_->height());
|
| - canvas->FillRect(SK_ColorWHITE,
|
| - gfx::Rect(0, background_image_->height(), width(),
|
| - height() - background_image_->height()));
|
| + canvas->FillRect(gfx::Rect(0, background_image_->height(), width(),
|
| + height() - background_image_->height()),
|
| + SK_ColorWHITE);
|
| }
|
|
|
| void DefaultSearchView::ButtonPressed(views::Button* sender,
|
|
|