| OLD | NEW |
| 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 padding applied between items of icon-label views. | 15 // Horizontal spacing between the icon and label in an IconLabelBubbleView. |
| 16 ICON_LABEL_VIEW_INTERNAL_PADDING, | 16 ICON_LABEL_VIEW_INTERNAL_SPACING, |
| 17 | 17 |
| 18 // Additional horizontal padding applied on the trailing edge of icon-label | 18 // Horizontal padding from the trailing edge of the label to the trailing edge |
| 19 // views. | 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 // The vertical padding between the edge of a location bar bubble and its | 25 // The vertical padding between the edge of a location bar bubble and its |
| 26 // contained text. | 26 // contained text. |
| 27 LOCATION_BAR_BUBBLE_FONT_VERTICAL_PADDING, | 27 LOCATION_BAR_BUBBLE_FONT_VERTICAL_PADDING, |
| 28 | 28 |
| 29 // The horizontal space between the edge and a bubble. | 29 // The horizontal space between the edge and a bubble. |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 // The visible size of the new tab button; does not include any Fitts' Law | 131 // The visible size of the new tab button; does not include any Fitts' Law |
| 132 // extensions. | 132 // extensions. |
| 133 NEW_TAB_BUTTON, | 133 NEW_TAB_BUTTON, |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 int GetLayoutConstant(LayoutConstant constant); | 136 int GetLayoutConstant(LayoutConstant constant); |
| 137 gfx::Insets GetLayoutInsets(LayoutInset inset); | 137 gfx::Insets GetLayoutInsets(LayoutInset inset); |
| 138 gfx::Size GetLayoutSize(LayoutSize size); | 138 gfx::Size GetLayoutSize(LayoutSize size); |
| 139 | 139 |
| 140 #endif // CHROME_BROWSER_UI_LAYOUT_CONSTANTS_H_ | 140 #endif // CHROME_BROWSER_UI_LAYOUT_CONSTANTS_H_ |
| OLD | NEW |