Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2522)

Unified Diff: ash/desktop_background/desktop_background_resources.cc

Issue 10823213: Change default wallpaper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix for 141222 Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/wallpaper_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/desktop_background/desktop_background_resources.cc
diff --git a/ash/desktop_background/desktop_background_resources.cc b/ash/desktop_background/desktop_background_resources.cc
index ca811da3c9b464e5a9f83d7ce088b742c7dc705c..110322deb4f662f612f8db5a13218677e36c0291 100644
--- a/ash/desktop_background/desktop_background_resources.cc
+++ b/ash/desktop_background/desktop_background_resources.cc
@@ -296,20 +296,20 @@ const ash::WallpaperInfo kDefaultWallpapers[] = {
"Neil Kremer",
"http://lightshedimagery.smugmug.com"
},
-#endif
{
{
- IDR_AURA_WALLPAPERS_5_GRADIENT0_LARGE,
- ash::TILE
+ IDR_AURA_WALLPAPERS_2_LANDSCAPE8_LARGE,
+ ash::CENTER_CROPPED
},
{
- IDR_AURA_WALLPAPERS_5_GRADIENT0_SMALL,
- ash::TILE
+ IDR_AURA_WALLPAPERS_2_LANDSCAPE8_SMALL,
+ ash::CENTER
},
- IDR_AURA_WALLPAPERS_5_GRADIENT0_THUMB,
- "Chromium",
- "http://www.chromium.org"
+ IDR_AURA_WALLPAPERS_2_LANDSCAPE8_THUMB,
+ "Clemens Günthermann",
+ "http://www.clegue.com"
},
+#endif
{
{
IDR_AURA_WALLPAPERS_5_GRADIENT1_LARGE,
@@ -411,14 +411,14 @@ const int kSolidColorIndex = -2;
// TODO(saintlou): These hardcoded indexes, although checked against the size
// of the array are really hacky.
#if defined(GOOGLE_CHROME_BUILD)
-const int kDefaultWallpaperIndex = 16; // IDR_AURA_WALLPAPERS_3_URBAN0
+const int kDefaultWallpaperIndex = 20; // IDR_AURA_WALLPAPERS_2_LANDSCAPE8
const int kLastRandomWallpaperIndex = 19; // The first 20 are random.
-const int kGuestWallpaperIndex = 26; // IDR_AURA_WALLPAPERS_5_GRADIENT6
+const int kGuestWallpaperIndex = kDefaultWallpaperIndex;
#else
// Set default wallpaper to the grey background for faster wallpaper loading
// time in browser tests. Otherwise, some of the tests will finish before
// wallpaper loaded and cause crashes.
-const int kDefaultWallpaperIndex = 6; // IDR_AURA_WALLPAPERS_5_GRADIENT5
+const int kDefaultWallpaperIndex = 5; // IDR_AURA_WALLPAPERS_5_GRADIENT5
const int kLastRandomWallpaperIndex = 8;
const int kGuestWallpaperIndex = kDefaultWallpaperIndex;
#endif
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/wallpaper_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698