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

Unified Diff: ash/desktop_background/desktop_background_view.h

Issue 10375010: Implement user selected wallpaper feature. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: James' review Created 8 years, 7 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: ash/desktop_background/desktop_background_view.h
diff --git a/ash/desktop_background/desktop_background_view.h b/ash/desktop_background/desktop_background_view.h
index 3effb1f382c995f7ebd2597ce188791d87d9ebce..5b1f6327783c43be2a1fe9a91b56f1d7c2fc8029 100644
--- a/ash/desktop_background/desktop_background_view.h
+++ b/ash/desktop_background/desktop_background_view.h
@@ -16,7 +16,7 @@ namespace internal {
class DesktopBackgroundView : public views::WidgetDelegateView {
public:
- DesktopBackgroundView(const SkBitmap& wallpaper, ImageLayout layout);
+ DesktopBackgroundView(const SkBitmap& wallpaper, WallpaperLayout layout);
flackr 2012/05/09 21:26:16 s/layout/wallpaper_layout for consistency.
bshe 2012/05/10 16:10:26 Done.
virtual ~DesktopBackgroundView();
private:
@@ -26,7 +26,7 @@ class DesktopBackgroundView : public views::WidgetDelegateView {
virtual void OnMouseReleased(const views::MouseEvent& event) OVERRIDE;
SkBitmap wallpaper_;
- ImageLayout image_layout_;
+ WallpaperLayout wallpaper_layout_;
DISALLOW_COPY_AND_ASSIGN(DesktopBackgroundView);
};

Powered by Google App Engine
This is Rietveld 408576698