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

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

Issue 1682373002: Misc. small changes in preparation for moving popup mode edge drawing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build Created 4 years, 10 months 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_OPAQUE_BROWSER_FRAME_VIEW_LAYOUT_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LAYOUT_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LAYOUT_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LAYOUT_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view.h" 9 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view.h"
10 #include "ui/views/layout/layout_manager.h" 10 #include "ui/views/layout/layout_manager.h"
11 #include "ui/views/window/frame_buttons.h" 11 #include "ui/views/window/frame_buttons.h"
12 12
13 class AvatarMenuButton; 13 class AvatarMenuButton;
14 class NewAvatarButton; 14 class NewAvatarButton;
15 class OpaqueBrowserFrameViewLayoutDelegate; 15 class OpaqueBrowserFrameViewLayoutDelegate;
16 16
17 namespace views { 17 namespace views {
18 class ImageButton; 18 class ImageButton;
19 class Label; 19 class Label;
20 } 20 }
21 21
22 // Calculates the position of the widgets in the opaque browser frame view. 22 // Calculates the position of the widgets in the opaque browser frame view.
23 // 23 //
24 // This is separated out for testing reasons. OpaqueBrowserFrameView has tight 24 // This is separated out for testing reasons. OpaqueBrowserFrameView has tight
25 // dependencies with Browser and classes that depend on Browser. 25 // dependencies with Browser and classes that depend on Browser.
26 class OpaqueBrowserFrameViewLayout : public views::LayoutManager { 26 class OpaqueBrowserFrameViewLayout : public views::LayoutManager {
27 public: 27 public:
28 // Constants used by OpaqueBrowserFrameView as well.
29 static const int kContentEdgeShadowThickness;
30
28 // Constants public for testing only. 31 // Constants public for testing only.
29 static const int kNonClientRestoredExtraThickness; 32 static const int kNonClientRestoredExtraThickness;
30 static const int kFrameBorderThickness; 33 static const int kFrameBorderThickness;
31 static const int kTitlebarTopAndBottomEdgeThickness; 34 static const int kTitlebarTopEdgeThickness;
32 static const int kIconLeftSpacing; 35 static const int kIconLeftSpacing;
33 static const int kIconTitleSpacing; 36 static const int kIconTitleSpacing;
34 static const int kCaptionSpacing; 37 static const int kCaptionSpacing;
35 static const int kNewTabCaptionCondensedSpacing; 38 static const int kNewTabCaptionCondensedSpacing;
36 39
37 explicit OpaqueBrowserFrameViewLayout( 40 explicit OpaqueBrowserFrameViewLayout(
38 OpaqueBrowserFrameViewLayoutDelegate* delegate); 41 OpaqueBrowserFrameViewLayoutDelegate* delegate);
39 ~OpaqueBrowserFrameViewLayout() override; 42 ~OpaqueBrowserFrameViewLayout() override;
40 43
41 // Whether we should add the (minimize,maximize,close) buttons. This should be 44 // Whether we should add the (minimize,maximize,close) buttons. This should be
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 AvatarMenuButton* avatar_button_; 197 AvatarMenuButton* avatar_button_;
195 views::View* new_avatar_button_; 198 views::View* new_avatar_button_;
196 199
197 std::vector<views::FrameButton> leading_buttons_; 200 std::vector<views::FrameButton> leading_buttons_;
198 std::vector<views::FrameButton> trailing_buttons_; 201 std::vector<views::FrameButton> trailing_buttons_;
199 202
200 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameViewLayout); 203 DISALLOW_COPY_AND_ASSIGN(OpaqueBrowserFrameViewLayout);
201 }; 204 };
202 205
203 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LAYOUT_H_ 206 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_LAYOUT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698