| 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_VIEWS_LAYOUT_CONSTANTS_H_ | 5 #ifndef CHROME_BROWSER_UI_LAYOUT_CONSTANTS_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_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 | 9 |
| 10 enum LayoutConstant { | 10 enum LayoutConstant { |
| 11 // Vertical offset from top of content to the top of find bar. | 11 // Vertical offset from top of content to the top of find bar. |
| 12 FIND_BAR_TOOLBAR_OVERLAP, | 12 FIND_BAR_TOOLBAR_OVERLAP, |
| 13 | 13 |
| 14 // Horizontal padding applied between items of icon-label views. | 14 // Horizontal padding applied between items of icon-label views. |
| 15 ICON_LABEL_VIEW_INTERNAL_PADDING, | 15 ICON_LABEL_VIEW_INTERNAL_PADDING, |
| 16 | 16 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 // spacing, shadowing, so this accounts for that as well. | 119 // spacing, shadowing, so this accounts for that as well. |
| 120 TOOLBAR, | 120 TOOLBAR, |
| 121 | 121 |
| 122 // The spacing between a ToolbarButton's image and its border. | 122 // The spacing between a ToolbarButton's image and its border. |
| 123 TOOLBAR_BUTTON, | 123 TOOLBAR_BUTTON, |
| 124 }; | 124 }; |
| 125 | 125 |
| 126 int GetLayoutConstant(LayoutConstant constant); | 126 int GetLayoutConstant(LayoutConstant constant); |
| 127 gfx::Insets GetLayoutInsets(LayoutInset inset); | 127 gfx::Insets GetLayoutInsets(LayoutInset inset); |
| 128 | 128 |
| 129 #endif // CHROME_BROWSER_UI_VIEWS_LAYOUT_CONSTANTS_H_ | 129 #endif // CHROME_BROWSER_UI_LAYOUT_CONSTANTS_H_ |
| OLD | NEW |