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

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: Deleting bad code. 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
« no previous file with comments | « chrome/browser/ui/constrained_window.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
Mike Wittman 2012/08/06 19:22:42 #333 == #333333 in CSS, so I think this should be
groby-ooo-7-16 2012/08/13 22:17:30 Done.
+
+#if defined(OS_WIN)
+const char kFont[] = "Segoe UI";
+#elif defined(OS_MAC)
+const char kFont[] = "Lucida Grande";
+#else
+const char kFont[] = "Chrome Droid Sans";
+#endif
+
+}
« no previous file with comments | « chrome/browser/ui/constrained_window.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698