Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(542)

Unified Diff: chrome/browser/ui/constrained_window.cc

Issue 10852015: Initial constants for new ConstrainedWindow style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
+
+}
« chrome/browser/ui/constrained_window.h ('K') | « chrome/browser/ui/constrained_window.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698