| 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::kBackgroundColor = SkColorSetRGB(0xfb, 0xfb, 0xfb); | 9 SkColor ConstrainedWindow::kBackgroundColor = SkColorSetRGB(0xfb, 0xfb, 0xfb); |
| 10 SkColor ConstrainedWindow::kTextColor = SkColorSetRGB(0x33, 0x33, 0x33); | 10 SkColor ConstrainedWindow::kTextColor = SkColorSetRGB(0x33, 0x33, 0x33); |
| 11 | 11 |
| 12 void ConstrainedWindow::FocusConstrainedWindow() { | 12 void ConstrainedWindow::FocusConstrainedWindow() { |
| 13 } | 13 } |
| 14 | 14 |
| 15 bool ConstrainedWindow::GetCanShowConstrainedWindow() { |
| 16 return true; |
| 17 } |
| 18 |
| 15 gfx::NativeWindow ConstrainedWindow::GetNativeWindow() { | 19 gfx::NativeWindow ConstrainedWindow::GetNativeWindow() { |
| 16 NOTREACHED(); | 20 NOTREACHED(); |
| 17 return NULL; | 21 return NULL; |
| 18 } | 22 } |
| OLD | NEW |