OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 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 #include "chrome/browser/ui/constrained_window_constants.h" |
| 6 |
| 7 const int ConstrainedWindowConstants::kTitleTopPadding = 15; |
| 8 const int ConstrainedWindowConstants::kHorizontalPadding = 20; |
| 9 const int ConstrainedWindowConstants::kClientTopPadding = 15; |
| 10 const int ConstrainedWindowConstants::kClientBottomPadding = 20; |
| 11 const int ConstrainedWindowConstants::kCloseButtonPadding = 7; |
| 12 const int ConstrainedWindowConstants::kBorderRadius = 2; |
| 13 const int ConstrainedWindowConstants::kRowPadding = 20; |
| 14 |
| 15 const ui::ResourceBundle::FontStyle ConstrainedWindowConstants::kTextFontStyle = |
| 16 ui::ResourceBundle::BaseFont; |
| 17 const ui::ResourceBundle::FontStyle |
| 18 ConstrainedWindowConstants::kBoldTextFontStyle = |
| 19 ui::ResourceBundle::BoldFont; |
| 20 const ui::ResourceBundle::FontStyle |
| 21 ConstrainedWindowConstants::kTitleFontStyle = |
| 22 ui::ResourceBundle::MediumFont; |
OLD | NEW |