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

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: Removed empty namespace 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..13ac6479ed29661914ad34d0666536346feb38af 100644
--- a/chrome/browser/ui/constrained_window.cc
+++ b/chrome/browser/ui/constrained_window.cc
@@ -6,6 +6,14 @@
#include "base/logging.h"
+SkColor ConstrainedWindow::GetBackgroundColor() {
+ return SkColorSetRGB(0xfb, 0xfb, 0xfb);
Ben Goodger (Google) 2012/08/14 23:53:57 I believe these are macros so you don't need to do
groby-ooo-7-16 2012/08/15 21:55:42 Yes and no :) They're macros in NDEBUG, but funct
+}
+
+SkColor ConstrainedWindow::GetTextColor() {
+ return SkColorSetRGB(0x33, 0x33, 0x33);
+}
+
void ConstrainedWindow::FocusConstrainedWindow() {
}
« 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