OLD | NEW |
1 // Copyright (c) 2010 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_VIEW_LAYOUT_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_LAYOUT_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_LAYOUT_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_LAYOUT_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "views/layout_manager.h" | 9 #include "views/layout/layout_manager.h" |
10 | 10 |
11 class BaseTabStrip; | 11 class BaseTabStrip; |
12 class BookmarkBarView; | 12 class BookmarkBarView; |
13 class Browser; | 13 class Browser; |
14 class BrowserView; | 14 class BrowserView; |
15 class ContentsContainer; | 15 class ContentsContainer; |
16 class DownloadShelfView; | 16 class DownloadShelfView; |
17 class TabContentsContainer; | 17 class TabContentsContainer; |
18 class ToolbarView; | 18 class ToolbarView; |
19 | 19 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 gfx::Rect vertical_layout_rect_; | 117 gfx::Rect vertical_layout_rect_; |
118 | 118 |
119 // The distance the FindBar is from the top of the window, in pixels. | 119 // The distance the FindBar is from the top of the window, in pixels. |
120 int find_bar_y_; | 120 int find_bar_y_; |
121 | 121 |
122 DISALLOW_COPY_AND_ASSIGN(BrowserViewLayout); | 122 DISALLOW_COPY_AND_ASSIGN(BrowserViewLayout); |
123 }; | 123 }; |
124 | 124 |
125 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_LAYOUT_H_ | 125 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_LAYOUT_H_ |
126 | 126 |
OLD | NEW |