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

Side by Side Diff: chrome/browser/ui/layout_constants.h

Issue 1998493002: Update omnibox chips in MD (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove extra include Created 4 years, 7 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_LAYOUT_CONSTANTS_H_ 5 #ifndef CHROME_BROWSER_UI_LAYOUT_CONSTANTS_H_
6 #define CHROME_BROWSER_UI_LAYOUT_CONSTANTS_H_ 6 #define CHROME_BROWSER_UI_LAYOUT_CONSTANTS_H_
7 7
8 #include "ui/gfx/geometry/insets.h" 8 #include "ui/gfx/geometry/insets.h"
9 #include "ui/gfx/geometry/size.h" 9 #include "ui/gfx/geometry/size.h"
10 10
11 enum LayoutConstant { 11 enum LayoutConstant {
12 // Vertical offset from top of content to the top of find bar. 12 // Vertical offset from top of content to the top of find bar.
13 FIND_BAR_TOOLBAR_OVERLAP, 13 FIND_BAR_TOOLBAR_OVERLAP,
14 14
15 // Horizontal spacing between the icon and label in an IconLabelBubbleView. 15 // Horizontal spacing between the icon and label in an IconLabelBubbleView.
16 ICON_LABEL_VIEW_INTERNAL_SPACING, 16 ICON_LABEL_VIEW_INTERNAL_SPACING,
17 17
18 // Horizontal padding from the trailing edge of the label to the trailing edge 18 // Horizontal padding from the trailing edge of the label to the trailing edge
19 // of an IconLabelBubbleView. 19 // of an IconLabelBubbleView.
20 ICON_LABEL_VIEW_TRAILING_PADDING, 20 ICON_LABEL_VIEW_TRAILING_PADDING,
21 21
22 // The thickness of the location bar's border. 22 // The thickness of the location bar's border.
23 LOCATION_BAR_BORDER_THICKNESS, 23 LOCATION_BAR_BORDER_THICKNESS,
24 24
25 // Horizontal padding before the omnibox textfield.
26 LOCATION_BAR_PRE_EDIT_SPACING,
Peter Kasting 2016/05/25 20:23:03 Seems like this constant is no longer used.
Evan Stade 2016/05/25 21:03:26 Done.
27
25 // The vertical padding between the edge of a location bar bubble and its 28 // The vertical padding between the edge of a location bar bubble and its
26 // contained text. 29 // contained text.
27 LOCATION_BAR_BUBBLE_FONT_VERTICAL_PADDING, 30 LOCATION_BAR_BUBBLE_FONT_VERTICAL_PADDING,
28 31
29 // The horizontal space between the edge and a bubble. 32 // The horizontal space between the edge and a bubble.
30 LOCATION_BAR_BUBBLE_HORIZONTAL_PADDING, 33 LOCATION_BAR_BUBBLE_HORIZONTAL_PADDING,
31 34
32 // The additional vertical padding of a bubble. 35 // The additional vertical padding of a bubble.
33 LOCATION_BAR_BUBBLE_VERTICAL_PADDING, 36 LOCATION_BAR_BUBBLE_VERTICAL_PADDING,
34 37
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 // The visible size of the new tab button; does not include any Fitts' Law 140 // The visible size of the new tab button; does not include any Fitts' Law
138 // extensions. 141 // extensions.
139 NEW_TAB_BUTTON, 142 NEW_TAB_BUTTON,
140 }; 143 };
141 144
142 int GetLayoutConstant(LayoutConstant constant); 145 int GetLayoutConstant(LayoutConstant constant);
143 gfx::Insets GetLayoutInsets(LayoutInset inset); 146 gfx::Insets GetLayoutInsets(LayoutInset inset);
144 gfx::Size GetLayoutSize(LayoutSize size); 147 gfx::Size GetLayoutSize(LayoutSize size);
145 148
146 #endif // CHROME_BROWSER_UI_LAYOUT_CONSTANTS_H_ 149 #endif // CHROME_BROWSER_UI_LAYOUT_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698