OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | |
6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | |
7 #pragma once | |
8 | |
9 #include "chrome/browser/ui/extensions/shell_window.h" | |
10 #include "chrome/browser/ui/views/extensions/extension_view.h" | |
11 #include "ui/views/widget/widget_delegate.h" | |
12 | |
13 class ExtensionHost; | |
14 | |
15 class ShellWindowViews : public ShellWindow, | |
16 public ExtensionView::Container, | |
17 public views::WidgetDelegate { | |
18 public: | |
19 explicit ShellWindowViews(ExtensionHost* host); | |
20 | |
21 // ShellWindow implementation. | |
22 virtual void Close() OVERRIDE; | |
23 | |
24 // WidgetDelegate implementation. | |
25 views::View* GetContentsView() OVERRIDE; | |
Ben Goodger (Google)
2012/01/12 23:42:38
make all these virtual
jeremya
2012/01/12 23:48:52
Done.
| |
26 bool CanResize() const OVERRIDE; | |
27 views::Widget* GetWidget() OVERRIDE; | |
28 const views::Widget* GetWidget() const OVERRIDE; | |
29 string16 GetWindowTitle() const OVERRIDE; | |
30 void DeleteDelegate() OVERRIDE; | |
31 | |
32 private: | |
33 virtual ~ShellWindowViews(); | |
34 | |
35 views::Widget* window_; | |
36 }; | |
Ben Goodger (Google)
2012/01/12 23:42:38
DISALLOW_COPY_AND_ASSIGN(ShellWindowViews);
jeremya
2012/01/12 23:48:52
Done.
| |
37 | |
38 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_SHELL_WINDOW_VIEWS_H_ | |
OLD | NEW |