Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: chrome/browser/ui/views/frame/browser_view_layout.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/gtest_prod_util.h" 11 #include "base/gtest_prod_util.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "ui/gfx/geometry/rect.h" 13 #include "ui/gfx/geometry/rect.h"
14 #include "ui/views/layout/layout_manager.h" 14 #include "ui/views/layout/layout_manager.h"
15 15
16 class BookmarkBarView; 16 class BookmarkBarView;
17 class Browser; 17 class Browser;
18 class BrowserViewLayoutDelegate; 18 class BrowserViewLayoutDelegate;
19 class ContentsLayoutManager; 19 class ContentsLayoutManager;
20 class ImmersiveModeController; 20 class ImmersiveModeController;
21 class InfoBarContainerView; 21 class InfoBarContainerView;
22 class TabContentsContainer;
23 class TabStrip; 22 class TabStrip;
24 23
25 namespace gfx { 24 namespace gfx {
26 class Point; 25 class Point;
27 class Size; 26 class Size;
28 } 27 }
29 28
30 namespace views { 29 namespace views {
31 class ClientView; 30 class ClientView;
32 } 31 }
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 gfx::Rect latest_dialog_bounds_; 159 gfx::Rect latest_dialog_bounds_;
161 160
162 // The distance the web contents modal dialog is from the top of the window, 161 // The distance the web contents modal dialog is from the top of the window,
163 // in pixels. 162 // in pixels.
164 int web_contents_modal_dialog_top_y_; 163 int web_contents_modal_dialog_top_y_;
165 164
166 DISALLOW_COPY_AND_ASSIGN(BrowserViewLayout); 165 DISALLOW_COPY_AND_ASSIGN(BrowserViewLayout);
167 }; 166 };
168 167
169 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_LAYOUT_H_ 168 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_LAYOUT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698