Chromium Code Reviews| Index: chrome/browser/ui/views/frame/browser_non_client_frame_view.h |
| diff --git a/chrome/browser/ui/views/frame/browser_non_client_frame_view.h b/chrome/browser/ui/views/frame/browser_non_client_frame_view.h |
| index 2fec30418391515fa3cb70a501a71aa79e74a5c4..73776a504470df0b1e64ab095bb1fee030166918 100644 |
| --- a/chrome/browser/ui/views/frame/browser_non_client_frame_view.h |
| +++ b/chrome/browser/ui/views/frame/browser_non_client_frame_view.h |
| @@ -9,6 +9,8 @@ |
| #include "views/window/non_client_view.h" |
| class BaseTabStrip; |
| +class BrowserFrame; |
| +class BrowserView; |
| // A specialization of the NonClientFrameView object that provides additional |
| // Browser-specific methods. |
| @@ -30,4 +32,12 @@ class BrowserNonClientFrameView : public views::NonClientFrameView { |
| virtual void UpdateThrobber(bool running) = 0; |
| }; |
| +namespace browser { |
| + |
| +// Provided by a browser_non_client_frame_view_factory_*.cc implementation |
| +BrowserNonClientFrameView* CreateBrowserNonClientFrameView( |
| + bool is_popup, BrowserFrame* frame, BrowserView* browser_view); |
|
sky
2010/12/10 18:18:20
Since you're passing in the browserview can we nuk
bryeung
2010/12/10 23:58:59
Yes, I think you're right about is_popup.
For the
|
| + |
| +} // browser |
| + |
| #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_H_ |