Index: ash/desktop_background/desktop_background_view.cc |
diff --git a/ash/desktop_background/desktop_background_view.cc b/ash/desktop_background/desktop_background_view.cc |
index 79470f0dbddb8f9ddf40cab326ee3758554f3604..dbf256f0499df461eccbaff9cee46a3b78ca9305 100644 |
--- a/ash/desktop_background/desktop_background_view.cc |
+++ b/ash/desktop_background/desktop_background_view.cc |
@@ -30,7 +30,7 @@ static int RoundPositive(double x) { |
DesktopBackgroundView::DesktopBackgroundView() { |
wallpaper_ = *ui::ResourceBundle::GetSharedInstance().GetImageNamed( |
- IDR_AURA_WALLPAPER).ToSkBitmap(); |
+ IDR_AURA_WALLPAPER_1).ToSkBitmap(); |
wallpaper_.buildMipMap(false); |
} |
@@ -71,8 +71,7 @@ void DesktopBackgroundView::OnPaint(gfx::Canvas* canvas) { |
wallpaper_cropped_rect.width(), wallpaper_cropped_rect.height(), |
0, 0, width(), height(), |
true); |
- } |
- else { |
+ } else { |
// Center the wallpaper in the destination rectangle (Skia will crop |
// as needed). We might decide later to tile small solid color images. |
canvas->DrawBitmapInt(wallpaper_, (width() - wallpaper_.width()) / 2, |