| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSTANTS_H_ | 5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSTANTS_H_ |
| 6 #define IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSTANTS_H_ | 6 #define IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSTANTS_H_ |
| 7 | 7 |
| 8 #import <CoreGraphics/CoreGraphics.h> | 8 #import <CoreGraphics/CoreGraphics.h> |
| 9 | 9 |
| 10 // Toolbar styling. | 10 // Toolbar styling. |
| 11 extern const CGFloat kToolbarBackgroundBrightness; | 11 extern const CGFloat kToolbarBackgroundBrightness; |
| 12 extern const CGFloat kToolbarTintColorBrightness; | 12 extern const CGFloat kToolbarTintColorBrightness; |
| 13 | 13 |
| 14 // Stackview constraints. | 14 // Stackview constraints. |
| 15 extern const CGFloat kVerticalMargin; | 15 extern const CGFloat kVerticalMargin; |
| 16 extern const CGFloat kHorizontalMargin; | 16 extern const CGFloat kHorizontalMargin; |
| 17 extern const CGFloat kStackViewSpacing; | 17 extern const CGFloat kStackViewSpacing; |
| 18 | 18 |
| 19 // Location bar styling. | 19 // Location bar styling. |
| 20 extern const CGFloat kLocationBarBorderWidth; | 20 extern const CGFloat kLocationBarBorderWidth; |
| 21 extern const CGFloat kLocationBarBorderColorBrightness; | 21 extern const CGFloat kLocationBarBorderColorBrightness; |
| 22 extern const CGFloat kLocationBarShadowRadius; | 22 extern const CGFloat kLocationBarShadowRadius; |
| 23 extern const CGFloat kLocationBarShadowOpacity; | 23 extern const CGFloat kLocationBarShadowOpacity; |
| 24 | 24 |
| 25 // Progress Bar Height. | 25 // Progress Bar Height. |
| 26 extern const CGFloat kProgressBarHeight; | 26 extern const CGFloat kProgressBarHeight; |
| 27 | 27 |
| 28 // Toolbar Buttons. |
| 29 extern const CGFloat kToolbarButtonWidth; |
| 30 |
| 28 #endif // IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSTANTS_H_ | 31 #endif // IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSTANTS_H_ |
| OLD | NEW |