OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_ | 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_ |
6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_ | 6 #define CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_ |
7 | 7 |
8 #include "views/window/window_win.h" | 8 #include "views/window/window_win.h" |
| 9 #include "views/window/non_client_view.h" |
9 | 10 |
10 class AeroGlassNonClientView; | 11 class AeroGlassNonClientView; |
11 class BrowserView; | 12 class BrowserView; |
12 class NonClientFrameView; | 13 class NonClientFrameView; |
13 class Profile; | 14 class Profile; |
14 class TabStrip; | 15 class TabStrip; |
15 | 16 |
16 // A specialization of the NonClientFrameView object that provides additional | 17 // A specialization of the NonClientFrameView object that provides additional |
17 // Browser-specific methods. | 18 // Browser-specific methods. |
18 class BrowserNonClientFrameView : public views::NonClientFrameView { | 19 class BrowserNonClientFrameView : public views::NonClientFrameView { |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 BrowserNonClientFrameView* browser_frame_view_; | 97 BrowserNonClientFrameView* browser_frame_view_; |
97 | 98 |
98 bool frame_initialized_; | 99 bool frame_initialized_; |
99 | 100 |
100 Profile* profile_; | 101 Profile* profile_; |
101 | 102 |
102 DISALLOW_EVIL_CONSTRUCTORS(BrowserFrame); | 103 DISALLOW_EVIL_CONSTRUCTORS(BrowserFrame); |
103 }; | 104 }; |
104 | 105 |
105 #endif // #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_ | 106 #endif // #ifndef CHROME_BROWSER_VIEWS_FRAME_BROWSER_FRAME_ |
OLD | NEW |