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

Unified Diff: ash/common/wallpaper/wallpaper_delegate.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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 | « ash/common/wallpaper/wallpaper_controller_unittest.cc ('k') | ash/common/wallpaper/wallpaper_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/wallpaper/wallpaper_delegate.h
diff --git a/ash/common/wallpaper/wallpaper_delegate.h b/ash/common/wallpaper/wallpaper_delegate.h
deleted file mode 100644
index 4f435746176af0428fbf8179b1b6eae37d9cfbd8..0000000000000000000000000000000000000000
--- a/ash/common/wallpaper/wallpaper_delegate.h
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ASH_COMMON_WALLPAPER_WALLPAPER_DELEGATE_H_
-#define ASH_COMMON_WALLPAPER_WALLPAPER_DELEGATE_H_
-
-#include "ash/ash_export.h"
-
-namespace ash {
-
-class ASH_EXPORT WallpaperDelegate {
- public:
- virtual ~WallpaperDelegate() {}
-
- // Returns the type of window animation that should be used when showing the
- // wallpaper.
- virtual int GetAnimationType() = 0;
-
- // Returns the wallpaper animation duration in ms. A value of 0 indicates
- // that the default should be used.
- virtual int GetAnimationDurationOverride() = 0;
-
- // Sets wallpaper animation duration in ms. Pass 0 to use the default.
- virtual void SetAnimationDurationOverride(int animation_duration_in_ms) = 0;
-
- // Should the slower initial animation be shown (as opposed to the faster
- // animation that's used e.g. when switching from one user's wallpaper to
- // another's on the login screen)?
- virtual bool ShouldShowInitialAnimation() = 0;
-
- // Updates current wallpaper. It may switch the size of wallpaper based on the
- // current display's resolution. If |clear_cache| is true, all wallpaper
- // cache should be cleared. This is required when the display's native
- // resolution changes to a larger resolution (e.g. when hooked up a large
- // external display) and we need to load a larger resolution wallpaper for the
- // large display. All the previous small resolution wallpaper cache should be
- // cleared.
- virtual void UpdateWallpaper(bool clear_cache) = 0;
-
- // Initialize wallpaper.
- virtual void InitializeWallpaper() = 0;
-
- // Returns true if user can open set wallpaper page.
- virtual bool CanOpenSetWallpaperPage() = 0;
-
- // Notifies delegate that wallpaper animation has finished.
- virtual void OnWallpaperAnimationFinished() = 0;
-
- // Notifies delegate that wallpaper boot animation has finished.
- virtual void OnWallpaperBootAnimationFinished() = 0;
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_WALLPAPER_WALLPAPER_DELEGATE_H_
« no previous file with comments | « ash/common/wallpaper/wallpaper_controller_unittest.cc ('k') | ash/common/wallpaper/wallpaper_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698