| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // TestShellWebTheme::Control implements the generic rendering of controls | 5 // TestShellWebTheme::Control implements the generic rendering of controls |
| 6 // needed by TestShellWebTheme::Engine. See the comments in that class | 6 // needed by TestShellWebTheme::Engine. See the comments in that class |
| 7 // header file for why this class is needed and used. | 7 // header file for why this class is needed and used. |
| 8 // | 8 // |
| 9 // This class implements a generic set of widgets using Skia. The widgets | 9 // This class implements a generic set of widgets using Skia. The widgets |
| 10 // are optimized for testability, not a pleasing appearance. | 10 // are optimized for testability, not a pleasing appearance. |
| 11 // | 11 // |
| 12 | 12 |
| 13 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBTHEMECONTROL_H_ | 13 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBTHEMECONTROL_H_ |
| 14 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBTHEMECONTROL_H_ | 14 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBTHEMECONTROL_H_ |
| 15 | 15 |
| 16 #include "base/basictypes.h" | 16 #include "base/basictypes.h" |
| 17 #include "skia/ext/platform_canvas.h" | |
| 18 #include "third_party/skia/include/core/SkColor.h" | 17 #include "third_party/skia/include/core/SkColor.h" |
| 19 #include "third_party/skia/include/core/SkRect.h" | 18 #include "third_party/skia/include/core/SkRect.h" |
| 20 | 19 |
| 20 class SkCanvas; |
| 21 |
| 21 namespace TestShellWebTheme { | 22 namespace TestShellWebTheme { |
| 22 | 23 |
| 23 class Control { | 24 class Control { |
| 24 public: | 25 public: |
| 25 // This list of states mostly mirrors the list in | 26 // This list of states mostly mirrors the list in |
| 26 // third_party/WebKit/WebCore/platform/ThemeTypes.h but is maintained | 27 // third_party/WebKit/WebCore/platform/ThemeTypes.h but is maintained |
| 27 // separately since that isn't public and also to minimize dependencies. | 28 // separately since that isn't public and also to minimize dependencies. |
| 28 // Note that the WebKit ThemeTypes seem to imply that a control can be | 29 // Note that the WebKit ThemeTypes seem to imply that a control can be |
| 29 // in multiple states simultaneously but WebThemeEngine only allows for | 30 // in multiple states simultaneously but WebThemeEngine only allows for |
| 30 // a single state at a time. | 31 // a single state at a time. |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 const int bottom_; | 169 const int bottom_; |
| 169 const int width_; | 170 const int width_; |
| 170 const int height_; | 171 const int height_; |
| 171 | 172 |
| 172 DISALLOW_COPY_AND_ASSIGN(Control); | 173 DISALLOW_COPY_AND_ASSIGN(Control); |
| 173 }; | 174 }; |
| 174 | 175 |
| 175 } // namespace TestShellWebTheme | 176 } // namespace TestShellWebTheme |
| 176 | 177 |
| 177 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBTHEMECONTROL_H_ | 178 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_WEBTHEMECONTROL_H_ |
| 178 | |
| OLD | NEW |