| Index: chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_window.mm
|
| diff --git a/chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_window.mm b/chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_window.mm
|
| index 29b9b3b64601f1fc64830e20e57673ee9c44a465..d056e6053d6d0b48505a627a18ddc6990a376693 100644
|
| --- a/chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_window.mm
|
| +++ b/chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_window.mm
|
| @@ -6,6 +6,7 @@
|
|
|
| #import "base/memory/scoped_nsobject.h"
|
| #import "chrome/browser/ui/constrained_window.h"
|
| +#import "chrome/browser/ui/constrained_window_constants.h"
|
| #include "skia/ext/skia_utils_mac.h"
|
|
|
| // The content view for the custom window.
|
| @@ -41,8 +42,8 @@
|
| - (void)drawRect:(NSRect)rect {
|
| NSBezierPath* path = [NSBezierPath
|
| bezierPathWithRoundedRect:[self bounds]
|
| - xRadius:ConstrainedWindow::kBorderRadius
|
| - yRadius:ConstrainedWindow::kBorderRadius];
|
| + xRadius:ConstrainedWindowConstants::kBorderRadius
|
| + yRadius:ConstrainedWindowConstants::kBorderRadius];
|
| [gfx::SkColorToCalibratedNSColor(
|
| ConstrainedWindow::GetBackgroundColor()) set];
|
| [path fill];
|
|
|