Index: ui/base/gtk/gtk_hig_constants.cc |
diff --git a/ui/base/gtk/gtk_hig_constants.cc b/ui/base/gtk/gtk_hig_constants.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f9d0280cedb0137d158d849806fc9f84adee4dc8 |
--- /dev/null |
+++ b/ui/base/gtk/gtk_hig_constants.cc |
@@ -0,0 +1,16 @@ |
+// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "ui/base/gtk/gtk_hig_constants.h" |
+ |
+#include <gdk/gdk.h> |
+ |
+namespace ui { |
+ |
+const GdkColor kGdkWhite = GDK_COLOR_RGB(0xff, 0xff, 0xff); |
+const GdkColor kGdkGray = GDK_COLOR_RGB(0x7f, 0x7f, 0x7f); |
+const GdkColor kGdkBlack = GDK_COLOR_RGB(0x00, 0x00, 0x00); |
+const GdkColor kGdkGreen = GDK_COLOR_RGB(0x00, 0xff, 0x00); |
+ |
+} // namespace ui |