Chromium Code Reviews| Index: chrome/browser/ui/constrained_window.cc |
| diff --git a/chrome/browser/ui/constrained_window.cc b/chrome/browser/ui/constrained_window.cc |
| index d00c070a9b04ac395548f79326e857653e45567d..2f62c71f6a21e69f3834f254193b839763a3b482 100644 |
| --- a/chrome/browser/ui/constrained_window.cc |
| +++ b/chrome/browser/ui/constrained_window.cc |
| @@ -13,3 +13,18 @@ gfx::NativeWindow ConstrainedWindow::GetNativeWindow() { |
| NOTREACHED(); |
| return NULL; |
| } |
| + |
| +namespace ConstrainedWindowStyle { |
| + |
| +const SkColor kBackgroundColor = SkColorSetRGB(0xfb, 0xfb, 0xfb); |
| +const SkColor kTextColor = SkColorSetRGB(3, 3, 3); |
| + |
| +#if defined(OS_WIN) |
| +const char kFont[] = "Segoe UI"; |
|
Ben Goodger (Google)
2012/08/03 23:09:07
you should be using the default font. this will be
groby-ooo-7-16
2012/08/03 23:18:20
Have a request open with ui-leads to clarify. The
groby-ooo-7-16
2012/08/13 22:17:30
Unified across platforms
Done.
On 2012/08/03 23:1
|
| +#elif defined(OS_MAC) |
| +const char kFont[] = "Lucida Grande"; |
|
Ben Goodger (Google)
2012/08/03 23:09:07
same comment applies to other platforms.
if you c
groby-ooo-7-16
2012/08/03 23:18:20
Yep. Will change as soon as I have clarity on name
groby-ooo-7-16
2012/08/13 22:17:30
Done.
|
| +#else |
| +const char kFont[] = "Chrome Droid Sans"; |
| +#endif |
| + |
| +} |