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 #ifndef UI_VIEWS_BORDER_H_ | 5 #ifndef UI_VIEWS_BORDER_H_ |
6 #define UI_VIEWS_BORDER_H_ | 6 #define UI_VIEWS_BORDER_H_ |
7 | 7 |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "gfx/insets.h" | |
10 #include "third_party/skia/include/core/SkColor.h" | 9 #include "third_party/skia/include/core/SkColor.h" |
| 10 #include "ui/gfx/insets.h" |
11 | 11 |
12 namespace gfx { | 12 namespace gfx { |
13 class Canvas; | 13 class Canvas; |
14 } | 14 } |
15 | 15 |
16 namespace ui { | 16 namespace ui { |
17 | 17 |
18 class View; | 18 class View; |
19 | 19 |
20 //////////////////////////////////////////////////////////////////////////////// | 20 //////////////////////////////////////////////////////////////////////////////// |
(...skipping 20 matching lines...) Expand all Loading... |
41 | 41 |
42 private: | 42 private: |
43 gfx::Insets insets_; | 43 gfx::Insets insets_; |
44 | 44 |
45 DISALLOW_COPY_AND_ASSIGN(Border); | 45 DISALLOW_COPY_AND_ASSIGN(Border); |
46 }; | 46 }; |
47 | 47 |
48 } // namespace ui | 48 } // namespace ui |
49 | 49 |
50 #endif // UI_VIEWS_BORDER_H_ | 50 #endif // UI_VIEWS_BORDER_H_ |
OLD | NEW |