OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_OPAQUE_BROWSER_FRAME_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
6 #define CHROME_BROWSER_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
7 | 7 |
8 #include "chrome/browser/views/frame/browser_frame.h" | 8 #include "chrome/browser/views/frame/browser_frame.h" |
9 #include "chrome/browser/views/frame/browser_non_client_frame_view.h" | 9 #include "chrome/browser/views/frame/browser_non_client_frame_view.h" |
10 #include "chrome/browser/views/tab_icon_view.h" | 10 #include "chrome/browser/views/tab_icon_view.h" |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 | 126 |
127 // The frame that hosts this view. | 127 // The frame that hosts this view. |
128 BrowserFrame* frame_; | 128 BrowserFrame* frame_; |
129 | 129 |
130 // The BrowserView hosted within this View. | 130 // The BrowserView hosted within this View. |
131 BrowserView* browser_view_; | 131 BrowserView* browser_view_; |
132 | 132 |
133 // The bounds of the ClientView. | 133 // The bounds of the ClientView. |
134 gfx::Rect client_view_bounds_; | 134 gfx::Rect client_view_bounds_; |
135 | 135 |
136 // The accessible name of this view. | |
137 std::wstring accessible_name_; | |
138 | |
139 DISALLOW_EVIL_CONSTRUCTORS(OpaqueBrowserFrameView); | 136 DISALLOW_EVIL_CONSTRUCTORS(OpaqueBrowserFrameView); |
140 }; | 137 }; |
141 | 138 |
142 #endif // CHROME_BROWSER_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ | 139 #endif // CHROME_BROWSER_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
OLD | NEW |