| 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);
|
| +}
|
| +
|
| +SkColor ConstrainedWindow::GetTextColor() {
|
| + return SkColorSetRGB(0x33, 0x33, 0x33);
|
| +}
|
| +
|
| void ConstrainedWindow::FocusConstrainedWindow() {
|
| }
|
|
|
|
|