OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/constrained_window.h" | 5 #include "chrome/browser/ui/constrained_window.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 | 8 |
9 SkColor ConstrainedWindow::GetBackgroundColor() { | |
10 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
| |
11 } | |
12 | |
13 SkColor ConstrainedWindow::GetTextColor() { | |
14 return SkColorSetRGB(0x33, 0x33, 0x33); | |
15 } | |
16 | |
9 void ConstrainedWindow::FocusConstrainedWindow() { | 17 void ConstrainedWindow::FocusConstrainedWindow() { |
10 } | 18 } |
11 | 19 |
12 gfx::NativeWindow ConstrainedWindow::GetNativeWindow() { | 20 gfx::NativeWindow ConstrainedWindow::GetNativeWindow() { |
13 NOTREACHED(); | 21 NOTREACHED(); |
14 return NULL; | 22 return NULL; |
15 } | 23 } |
OLD | NEW |