OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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 CHROME_BROWSER_UI_INFOBAR_CONSTANTS_H_ |
| 6 #define CHROME_BROWSER_UI_INFOBAR_CONSTANTS_H_ |
| 7 |
| 8 namespace infobars { |
| 9 |
| 10 // Constants used to configure infobar component via InfoBar::Initialize() |
| 11 // (see components/infobars/core/infobar.h). The values depends on the UI |
| 12 // system used. |
| 13 extern const int kSeparatorLineHeight; |
| 14 extern const int kDefaultArrowTargetHeight; |
| 15 extern const int kMaximumArrowTargetHeight; |
| 16 extern const int kDefaultArrowTargetHalfWidth; |
| 17 extern const int kMaximumArrowTargetHalfWidth; |
| 18 extern const int kDefaultBarTargetHeight; |
| 19 |
| 20 } // namespace infobars |
| 21 |
| 22 #endif // CHROME_BROWSER_UI_INFOBAR_CONSTANTS_H_ |
OLD | NEW |