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); |
}; |