| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_FOCUS_BORDER_H_ | 5 #ifndef UI_VIEWS_FOCUS_BORDER_H_ |
| 6 #define UI_VIEWS_FOCUS_BORDER_H_ | 6 #define UI_VIEWS_FOCUS_BORDER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" |
| 8 #include "third_party/skia/include/core/SkColor.h" | 9 #include "third_party/skia/include/core/SkColor.h" |
| 9 #include "ui/gfx/insets.h" | 10 #include "ui/gfx/insets.h" |
| 10 #include "ui/views/views_export.h" | 11 #include "ui/views/views_export.h" |
| 11 #include "base/basictypes.h" | |
| 12 | 12 |
| 13 namespace gfx { | 13 namespace gfx { |
| 14 class Canvas; | 14 class Canvas; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace views { | 17 namespace views { |
| 18 class View; | 18 class View; |
| 19 | 19 |
| 20 //////////////////////////////////////////////////////////////////////////////// | 20 //////////////////////////////////////////////////////////////////////////////// |
| 21 // | 21 // |
| (...skipping 25 matching lines...) Expand all Loading... |
| 47 protected: | 47 protected: |
| 48 FocusBorder(); | 48 FocusBorder(); |
| 49 | 49 |
| 50 private: | 50 private: |
| 51 DISALLOW_COPY_AND_ASSIGN(FocusBorder); | 51 DISALLOW_COPY_AND_ASSIGN(FocusBorder); |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace views | 54 } // namespace views |
| 55 | 55 |
| 56 #endif // UI_VIEWS_FOCUS_BORDER_H_ | 56 #endif // UI_VIEWS_FOCUS_BORDER_H_ |
| OLD | NEW |