| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the theme implementation for form controls in WebCore. | 2 * This file is part of the theme implementation for form controls in WebCore. |
| 3 * | 3 * |
| 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. | 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #endif | 30 #endif |
| 31 #include "core/rendering/RenderObject.h" | 31 #include "core/rendering/RenderObject.h" |
| 32 #include "core/rendering/style/CachedUAStyle.h" | 32 #include "core/rendering/style/CachedUAStyle.h" |
| 33 #include "platform/scroll/ScrollTypes.h" | 33 #include "platform/scroll/ScrollTypes.h" |
| 34 #include "wtf/PassRefPtr.h" | 34 #include "wtf/PassRefPtr.h" |
| 35 #include "wtf/RefCounted.h" | 35 #include "wtf/RefCounted.h" |
| 36 #include "wtf/text/WTFString.h" | 36 #include "wtf/text/WTFString.h" |
| 37 | 37 |
| 38 namespace WebCore { | 38 namespace WebCore { |
| 39 | 39 |
| 40 class CSSStyleSheet; | |
| 41 class Element; | 40 class Element; |
| 42 class FileList; | 41 class FileList; |
| 43 class HTMLInputElement; | 42 class HTMLInputElement; |
| 44 class PopupMenu; | |
| 45 class RenderMenuList; | |
| 46 class RenderMeter; | 43 class RenderMeter; |
| 47 class RenderProgress; | 44 class RenderProgress; |
| 48 | 45 |
| 49 | 46 |
| 50 class RenderTheme : public RefCounted<RenderTheme> { | 47 class RenderTheme : public RefCounted<RenderTheme> { |
| 51 protected: | 48 protected: |
| 52 RenderTheme(); | 49 RenderTheme(); |
| 53 | 50 |
| 54 public: | 51 public: |
| 55 virtual ~RenderTheme() { } | 52 virtual ~RenderTheme() { } |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 static const RGBA32 defaultCompositionBackgroundColor = 0xFFFFDD55; | 307 static const RGBA32 defaultCompositionBackgroundColor = 0xFFFFDD55; |
| 311 | 308 |
| 312 #if USE(NEW_THEME) | 309 #if USE(NEW_THEME) |
| 313 Theme* m_platformTheme; // The platform-specific theme. | 310 Theme* m_platformTheme; // The platform-specific theme. |
| 314 #endif | 311 #endif |
| 315 }; | 312 }; |
| 316 | 313 |
| 317 } // namespace WebCore | 314 } // namespace WebCore |
| 318 | 315 |
| 319 #endif // RenderTheme_h | 316 #endif // RenderTheme_h |
| OLD | NEW |