| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSTANTS_H_ |
| 6 #define IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSTANTS_H_ |
| 7 |
| 8 #import <CoreGraphics/CoreGraphics.h> |
| 9 |
| 10 // Toolbar styling. |
| 11 extern const CGFloat kToolbarBackgroundBrightness; |
| 12 extern const CGFloat kToolbarTintColorBrightness; |
| 13 |
| 14 // Stackview constraints. |
| 15 extern const CGFloat kVerticalMargin; |
| 16 extern const CGFloat kHorizontalMargin; |
| 17 extern const CGFloat kStackViewSpacing; |
| 18 |
| 19 // Location bar styling. |
| 20 extern const CGFloat kLocationBarBorderWidth; |
| 21 extern const CGFloat kLocationBarBorderColorBrightness; |
| 22 extern const CGFloat kLocationBarShadowRadius; |
| 23 extern const CGFloat kLocationBarShadowOpacity; |
| 24 |
| 25 // Progress Bar Height. |
| 26 extern const CGFloat kProgressBarHeight; |
| 27 |
| 28 #endif // IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSTANTS_H_ |
| OLD | NEW |