Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/chrome_style.h" | 5 #include "chrome/browser/ui/chrome_style.h" |
| 6 | 6 |
| 7 #include "chrome/browser/themes/theme_service.h" | 7 #include "chrome/browser/themes/theme_service.h" |
| 8 #include "grit/theme_resources.h" | 8 #include "grit/ui_resources.h" |
| 9 #include "third_party/skia/include/core/SkBitmap.h" | 9 #include "third_party/skia/include/core/SkBitmap.h" |
| 10 #include "ui/gfx/image/image.h" | 10 #include "ui/gfx/image/image.h" |
| 11 | 11 |
| 12 namespace chrome_style { | 12 namespace chrome_style { |
| 13 | 13 |
| 14 int GetCloseButtonSize() { | 14 int GetCloseButtonSize() { |
| 15 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); | 15 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); |
|
tfarina
2013/01/10 19:32:48
supernit: while here, you could change that to rb.
msw
2013/01/10 19:59:49
Done.
| |
| 16 const SkBitmap* bitmap = | 16 const SkBitmap* bitmap = |
| 17 bundle.GetNativeImageNamed(IDR_WEB_UI_CLOSE).ToSkBitmap(); | 17 bundle.GetNativeImageNamed(IDR_CLOSE_DIALOG).ToSkBitmap(); |
| 18 DCHECK_EQ(bitmap->width(), bitmap->height()); | 18 DCHECK_EQ(bitmap->width(), bitmap->height()); |
| 19 return bitmap->width(); | 19 return bitmap->width(); |
| 20 } | 20 } |
| 21 | 21 |
| 22 SkColor GetBackgroundColor() { | 22 SkColor GetBackgroundColor() { |
| 23 return ThemeService::GetDefaultColor(ThemeService::COLOR_CONTROL_BACKGROUND); | 23 return ThemeService::GetDefaultColor(ThemeService::COLOR_CONTROL_BACKGROUND); |
| 24 } | 24 } |
| 25 | 25 |
| 26 SkColor GetLinkColor() { | 26 SkColor GetLinkColor() { |
| 27 return SkColorSetRGB(0x11, 0x55, 0xCC); | 27 return SkColorSetRGB(0x11, 0x55, 0xCC); |
| 28 } | 28 } |
| 29 | 29 |
| 30 SkColor GetSeparatorColor() { | 30 SkColor GetSeparatorColor() { |
| 31 return SkColorSetRGB(0xE0, 0xE0, 0xE0); | 31 return SkColorSetRGB(0xE0, 0xE0, 0xE0); |
| 32 } | 32 } |
| 33 | 33 |
| 34 } // namespace chrome_style | 34 } // namespace chrome_style |
| OLD | NEW |