summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ntp_background_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ntp_background_util.cc')
-rw-r--r--chrome/browser/ntp_background_util.cc13
1 files changed, 6 insertions, 7 deletions
diff --git a/chrome/browser/ntp_background_util.cc b/chrome/browser/ntp_background_util.cc
index 5dc0d6f..96496f5 100644
--- a/chrome/browser/ntp_background_util.cc
+++ b/chrome/browser/ntp_background_util.cc
@@ -56,17 +56,16 @@ void PaintThemeBackground(
} // namespace
// static
-void NtpBackgroundUtil::PaintBackgroundDetachedMode(
- ui::ThemeProvider* tp, gfx::Canvas* canvas, const gfx::Rect& area,
- int tab_contents_height) {
+void NtpBackgroundUtil::PaintBackgroundDetachedMode(ui::ThemeProvider* tp,
+ gfx::Canvas* canvas,
+ const gfx::Rect& area,
+ int tab_contents_height) {
// Draw the background to match the new tab page.
- canvas->FillRectInt(tp->GetColor(ThemeService::COLOR_NTP_BACKGROUND),
- area.x(), area.y(), area.width(), area.height());
+ canvas->FillRect(tp->GetColor(ThemeService::COLOR_NTP_BACKGROUND), area);
if (tp->HasCustomImage(IDR_THEME_NTP_BACKGROUND)) {
int tiling = ThemeService::NO_REPEAT;
- tp->GetDisplayProperty(ThemeService::NTP_BACKGROUND_TILING,
- &tiling);
+ tp->GetDisplayProperty(ThemeService::NTP_BACKGROUND_TILING, &tiling);
int alignment;
if (tp->GetDisplayProperty(ThemeService::NTP_BACKGROUND_ALIGNMENT,
&alignment)) {