diff options
Diffstat (limited to 'ui/aura_shell/desktop_layout_manager.h')
-rw-r--r-- | ui/aura_shell/desktop_layout_manager.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ui/aura_shell/desktop_layout_manager.h b/ui/aura_shell/desktop_layout_manager.h index 7af3039..80efb19 100644 --- a/ui/aura_shell/desktop_layout_manager.h +++ b/ui/aura_shell/desktop_layout_manager.h @@ -23,8 +23,6 @@ class Widget; namespace aura_shell { namespace internal { -class ShelfLayoutController; - // A layout manager for the root window. // Resizes all of its immediate children to fill the bounds of the root window. class DesktopLayoutManager : public aura::LayoutManager { @@ -32,8 +30,6 @@ class DesktopLayoutManager : public aura::LayoutManager { explicit DesktopLayoutManager(aura::Window* owner); virtual ~DesktopLayoutManager(); - void set_shelf(ShelfLayoutController* shelf) { shelf_ = shelf; } - void set_background_widget(views::Widget* background_widget) { background_widget_ = background_widget; } @@ -52,8 +48,6 @@ class DesktopLayoutManager : public aura::LayoutManager { views::Widget* background_widget_; - ShelfLayoutController* shelf_; - DISALLOW_COPY_AND_ASSIGN(DesktopLayoutManager); }; |