| Index: chrome/browser/ui/ash/user_wallpaper_delegate_win.cc
|
| diff --git a/chrome/browser/ui/ash/user_wallpaper_delegate_win.cc b/chrome/browser/ui/ash/user_wallpaper_delegate_win.cc
|
| index 6a83c600893e14e5ea0c0355c62cf95d48fe6c1b..3f5de63a30a1e752e77058c8d09cbcb466c04b93 100644
|
| --- a/chrome/browser/ui/ash/user_wallpaper_delegate_win.cc
|
| +++ b/chrome/browser/ui/ash/user_wallpaper_delegate_win.cc
|
| @@ -44,7 +44,7 @@ class UserWallpaperDelegate : public ash::UserWallpaperDelegate {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| - virtual void UpdateWallpaper() OVERRIDE {
|
| + virtual void UpdateWallpaper(bool clear_cache) OVERRIDE {
|
| SkBitmap bitmap;
|
| bitmap.setConfig(SkBitmap::kARGB_8888_Config, 16, 16);
|
| bitmap.allocPixels();
|
| @@ -63,7 +63,7 @@ class UserWallpaperDelegate : public ash::UserWallpaperDelegate {
|
| }
|
|
|
| virtual void InitializeWallpaper() OVERRIDE {
|
| - UpdateWallpaper();
|
| + UpdateWallpaper(false);
|
| }
|
|
|
| virtual void OpenSetWallpaperPage() OVERRIDE {
|
|
|