diff options
Diffstat (limited to 'ash/shell/panel_window.cc')
-rw-r--r-- | ash/shell/panel_window.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ash/shell/panel_window.cc b/ash/shell/panel_window.cc index 8606a19..e5d68ac 100644 --- a/ash/shell/panel_window.cc +++ b/ash/shell/panel_window.cc @@ -74,8 +74,9 @@ bool PanelWindow::CanMaximize() const { return false; } -views::NonClientFrameView* PanelWindow::CreateNonClientFrameView() { - return new PanelFrameView(); +views::NonClientFrameView* PanelWindow::CreateNonClientFrameView( + views::Widget* widget) { + return new PanelFrameView(widget); } } // namespace ash |