| Index: chrome/browser/ui/constrained_window.cc
|
| diff --git a/chrome/browser/ui/constrained_window.cc b/chrome/browser/ui/constrained_window.cc
|
| index 9acd40c1b66ff4b3b0299bf2d752f5627bd96d32..398677272fdb5d612e9b0582c15b790e03d43664 100644
|
| --- a/chrome/browser/ui/constrained_window.cc
|
| +++ b/chrome/browser/ui/constrained_window.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/logging.h"
|
| #include "chrome/browser/themes/theme_service.h"
|
| +#include "chrome/browser/ui/constrained_window_constants.h"
|
| #include "grit/theme_resources.h"
|
| #include "third_party/skia/include/core/SkBitmap.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| @@ -40,6 +41,14 @@ SkColor ConstrainedWindow::GetSeparatorColor() {
|
| return SkColorSetRGB(0xE0, 0xE0, 0xE0);
|
| }
|
|
|
| +// static
|
| +gfx::Insets ConstrainedWindow::GetDefaultInsets() {
|
| + return gfx::Insets(ConstrainedWindowConstants::kClientTopPadding,
|
| + ConstrainedWindowConstants::kHorizontalPadding,
|
| + ConstrainedWindowConstants::kClientBottomPadding,
|
| + ConstrainedWindowConstants::kHorizontalPadding);
|
| +}
|
| +
|
| void ConstrainedWindow::FocusConstrainedWindow() {
|
| }
|
|
|
|
|