| 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_NATIVE_THEME_NATIVE_THEME_BASE_H_ | 5 #ifndef UI_NATIVE_THEME_NATIVE_THEME_BASE_H_ |
| 6 #define UI_NATIVE_THEME_NATIVE_THEME_BASE_H_ | 6 #define UI_NATIVE_THEME_NATIVE_THEME_BASE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "skia/ext/platform_canvas.h" | 11 #include "skia/ext/platform_canvas.h" |
| 12 #include "ui/native_theme/native_theme.h" | 12 #include "ui/native_theme/native_theme.h" |
| 13 | 13 |
| 14 namespace gfx { | 14 namespace gfx { |
| 15 class Canvas; | 15 class Canvas; |
| 16 class ImageSkia; | 16 class ImageSkia; |
| 17 class Rect; | 17 class Rect; |
| 18 class Size; | 18 class Size; |
| 19 } | 19 } |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 | 207 |
| 208 // The length of the arrow buttons, 0 means no buttons are drawn. | 208 // The length of the arrow buttons, 0 means no buttons are drawn. |
| 209 unsigned int scrollbar_button_length_; | 209 unsigned int scrollbar_button_length_; |
| 210 | 210 |
| 211 DISALLOW_COPY_AND_ASSIGN(NativeThemeBase); | 211 DISALLOW_COPY_AND_ASSIGN(NativeThemeBase); |
| 212 }; | 212 }; |
| 213 | 213 |
| 214 } // namespace ui | 214 } // namespace ui |
| 215 | 215 |
| 216 #endif // UI_NATIVE_THEME_NATIVE_THEME_BASE_H_ | 216 #endif // UI_NATIVE_THEME_NATIVE_THEME_BASE_H_ |
| OLD | NEW |