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 * |
11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
15 * | 15 * |
16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
20 * | 20 * |
21 */ | 21 */ |
22 | 22 |
23 #ifndef RenderTheme_h | 23 #ifndef RenderTheme_h |
24 #define RenderTheme_h | 24 #define RenderTheme_h |
25 | 25 |
26 #if USE(NEW_THEME) | 26 #if USE(NEW_THEME) |
27 #include "Theme.h" | 27 #include "core/platform/Theme.h" |
28 #else | 28 #else |
29 #include "ThemeTypes.h" | 29 #include "core/platform/ThemeTypes.h" |
30 #endif | 30 #endif |
31 #include "RenderObject.h" | 31 #include "RenderObject.h" |
32 #include "ScrollTypes.h" | 32 #include "core/platform/ScrollTypes.h" |
33 #include <wtf/PassRefPtr.h> | 33 #include <wtf/PassRefPtr.h> |
34 #include <wtf/RefCounted.h> | 34 #include <wtf/RefCounted.h> |
35 | 35 |
36 namespace WebCore { | 36 namespace WebCore { |
37 | 37 |
38 class CSSStyleSheet; | 38 class CSSStyleSheet; |
39 class Element; | 39 class Element; |
40 class FileList; | 40 class FileList; |
41 class HTMLInputElement; | 41 class HTMLInputElement; |
42 class PopupMenu; | 42 class PopupMenu; |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 static const RGBA32 defaultTapHighlightColor = 0x66000000; | 350 static const RGBA32 defaultTapHighlightColor = 0x66000000; |
351 | 351 |
352 #if USE(NEW_THEME) | 352 #if USE(NEW_THEME) |
353 Theme* m_theme; // The platform-specific theme. | 353 Theme* m_theme; // The platform-specific theme. |
354 #endif | 354 #endif |
355 }; | 355 }; |
356 | 356 |
357 } // namespace WebCore | 357 } // namespace WebCore |
358 | 358 |
359 #endif // RenderTheme_h | 359 #endif // RenderTheme_h |
OLD | NEW |