| Index: ui/views/border.h
|
| diff --git a/ui/views/border.h b/ui/views/border.h
|
| index 8c6fd1c9f03ba0b709c9f9d19d5af60df0e5be52..ec3b1225555fc6891a53311cfc05bcc451ccaa78 100644
|
| --- a/ui/views/border.h
|
| +++ b/ui/views/border.h
|
| @@ -5,9 +5,11 @@
|
| #ifndef UI_VIEWS_BORDER_H_
|
| #define UI_VIEWS_BORDER_H_
|
|
|
| +#include "base/basictypes.h"
|
| #include "third_party/skia/include/core/SkColor.h"
|
| #include "ui/gfx/insets.h"
|
| #include "ui/views/view.h"
|
| +#include "ui/views/views_export.h"
|
|
|
| namespace gfx{
|
| class Canvas;
|
| @@ -49,9 +51,11 @@ class VIEWS_EXPORT Border {
|
|
|
| // Creates a border of the specified color, and specified thickness on each
|
| // side.
|
| - static Border* CreateSolidSidedBorder(int top, int left,
|
| - int bottom, int right,
|
| - SkColor color);
|
| + static Border* CreateSolidSidedBorder(int top,
|
| + int left,
|
| + int bottom,
|
| + int right,
|
| + SkColor color);
|
|
|
| // Creates a Border from the specified Painter. The border owns the painter,
|
| // thus the painter is deleted when the Border is deleted.
|
|
|