OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_VIEWS_FRAME_BROWSER_FRAME_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_FRAME_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_FRAME_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_FRAME_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
12 #include "chrome/browser/ui/views/frame/native_browser_frame_delegate.h" | 12 #include "chrome/browser/ui/views/frame/native_browser_frame_delegate.h" |
13 #include "views/widget/widget.h" | 13 #include "views/widget/widget.h" |
14 | 14 |
15 class AeroGlassNonClientView; | |
16 class AvatarMenuButton; | 15 class AvatarMenuButton; |
17 class BrowserNonClientFrameView; | 16 class BrowserNonClientFrameView; |
18 class BrowserRootView; | 17 class BrowserRootView; |
19 class BrowserView; | 18 class BrowserView; |
20 class NativeBrowserFrame; | 19 class NativeBrowserFrame; |
21 class NonClientFrameView; | 20 class NonClientFrameView; |
22 class Profile; | |
23 | 21 |
24 namespace gfx { | 22 namespace gfx { |
25 class Font; | 23 class Font; |
26 class Rect; | 24 class Rect; |
27 } | 25 } |
28 | 26 |
29 namespace ui { | 27 namespace ui { |
30 class ThemeProvider; | 28 class ThemeProvider; |
31 } | 29 } |
32 | 30 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 // A pointer to our NonClientFrameView as a BrowserNonClientFrameView. | 88 // A pointer to our NonClientFrameView as a BrowserNonClientFrameView. |
91 BrowserNonClientFrameView* browser_frame_view_; | 89 BrowserNonClientFrameView* browser_frame_view_; |
92 | 90 |
93 // The BrowserView is our ClientView. This is a pointer to it. | 91 // The BrowserView is our ClientView. This is a pointer to it. |
94 BrowserView* browser_view_; | 92 BrowserView* browser_view_; |
95 | 93 |
96 DISALLOW_COPY_AND_ASSIGN(BrowserFrame); | 94 DISALLOW_COPY_AND_ASSIGN(BrowserFrame); |
97 }; | 95 }; |
98 | 96 |
99 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_FRAME_H_ | 97 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_FRAME_H_ |
OLD | NEW |