1 // Copyright (c) 2011 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.
5 #include "chrome/browser/ui/chrome_style.h"
7 #include "chrome/browser/themes/theme_properties.h"
8 #include "third_party/skia/include/core/SkBitmap.h"
9 #include "ui/gfx/image/image.h"
10 #include "ui/resources/grit/ui_resources.h"
12 namespace chrome_style
{
14 int GetCloseButtonSize() {
15 ui::ResourceBundle
& rb
= ui::ResourceBundle::GetSharedInstance();
16 const SkBitmap
* image
= rb
.GetNativeImageNamed(IDR_CLOSE_DIALOG
).ToSkBitmap();
17 DCHECK_EQ(image
->width(), image
->height());
18 return image
->width();
21 SkColor
GetBackgroundColor() {
22 return ThemeProperties::GetDefaultColor(
23 ThemeProperties::COLOR_CONTROL_BACKGROUND
);
26 SkColor
GetLinkColor() {
27 return SkColorSetRGB(0x11, 0x55, 0xCC);
30 } // namespace chrome_style