summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/constrained_window_constants.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/constrained_window_constants.h')
-rw-r--r--chrome/browser/ui/constrained_window_constants.h27
1 files changed, 14 insertions, 13 deletions
diff --git a/chrome/browser/ui/constrained_window_constants.h b/chrome/browser/ui/constrained_window_constants.h
index 0d9d9ef..5a4e62a8 100644
--- a/chrome/browser/ui/constrained_window_constants.h
+++ b/chrome/browser/ui/constrained_window_constants.h
@@ -5,6 +5,8 @@
#ifndef CHROME_BROWSER_UI_CONSTRAINED_WINDOW_CONSTANTS_H_
#define CHROME_BROWSER_UI_CONSTRAINED_WINDOW_CONSTANTS_H_
+#include "ui/base/resource/resource_bundle.h"
+
///////////////////////////////////////////////////////////////////////////////
// ConstrainedWindowConstants
//
@@ -12,23 +14,22 @@
//
class ConstrainedWindowConstants {
public:
- static const int kTitleTopPadding = 15; // Padding above the title.
- static const int kHorizontalPadding = 20; // Left and right padding.
- static const int kClientTopPadding = 18; // Padding above the client view.
- static const int kClientBottomPadding = 20; // Padding below the client view.
- static const int kCloseButtonPadding = 7; // Padding around the close button.
- static const int kBorderRadius = 2; // Border radius for dialog corners.
- static const int kRowPadding = 20; // Padding between rows of text.
+ static const int kTitleTopPadding; // Padding above the title.
+ static const int kHorizontalPadding; // Left and right padding.
+ static const int kClientTopPadding; // Padding above the client view.
+ static const int kClientBottomPadding; // Padding below the client view.
+ static const int kCloseButtonPadding; // Padding around the close button.
+ static const int kBorderRadius; // Border radius for dialog corners.
+ static const int kRowPadding; // Padding between rows of text.
// Font style for dialog text.
- static const ui::ResourceBundle::FontStyle kTextFontStyle =
- ui::ResourceBundle::BaseFont;
+ static const ui::ResourceBundle::FontStyle kTextFontStyle;
+
// Font style for bold dialog text.
- static const ui::ResourceBundle::FontStyle kBoldTextFontStyle =
- ui::ResourceBundle::BoldFont;
+ static const ui::ResourceBundle::FontStyle kBoldTextFontStyle;
+
// Font style for dialog title.
- static const ui::ResourceBundle::FontStyle kTitleFontStyle =
- ui::ResourceBundle::MediumFont;
+ static const ui::ResourceBundle::FontStyle kTitleFontStyle;
};
#endif // CHROME_BROWSER_UI_CONSTRAINED_WINDOW_CONSTANTS_H_