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

Unified Diff: chrome/browser/ui/ash/user_wallpaper_delegate_win.cc

Issue 130983007: Creating multi profile animations for switching users and teleporting of windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Created 6 years, 11 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
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 6c1a2aece8af74bead36d4b352464efc0290666d..6a83c600893e14e5ea0c0355c62cf95d48fe6c1b 100644
--- a/chrome/browser/ui/ash/user_wallpaper_delegate_win.cc
+++ b/chrome/browser/ui/ash/user_wallpaper_delegate_win.cc
@@ -34,6 +34,16 @@ class UserWallpaperDelegate : public ash::UserWallpaperDelegate {
return true;
}
+ virtual int GetAnimationDurationOverride() OVERRIDE {
+ // Return 0 to select the default.
+ return 0;
+ }
+
+ virtual void SetAnimationDurationOverride(
+ int animation_duration_in_ms) OVERRIDE {
+ NOTIMPLEMENTED();
+ }
+
virtual void UpdateWallpaper() OVERRIDE {
SkBitmap bitmap;
bitmap.setConfig(SkBitmap::kARGB_8888_Config, 16, 16);

Powered by Google App Engine
This is Rietveld 408576698