OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights
reserved. |
3 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 3 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 10 matching lines...) Expand all Loading... |
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
25 */ | 25 */ |
26 | 26 |
27 #ifndef Settings_h | 27 #ifndef Settings_h |
28 #define Settings_h | 28 #define Settings_h |
29 | 29 |
30 #include "EditingBehaviorTypes.h" | 30 #include "EditingBehaviorTypes.h" |
31 #include "KURL.h" | |
32 #include "SettingsMacros.h" | 31 #include "SettingsMacros.h" |
33 #include "Timer.h" | 32 #include "core/platform/KURL.h" |
| 33 #include "core/platform/Timer.h" |
34 #include "core/platform/graphics/FontRenderingMode.h" | 34 #include "core/platform/graphics/FontRenderingMode.h" |
35 #include "core/platform/graphics/IntSize.h" | 35 #include "core/platform/graphics/IntSize.h" |
36 #include <wtf/HashMap.h> | 36 #include <wtf/HashMap.h> |
37 #include <wtf/text/AtomicString.h> | 37 #include <wtf/text/AtomicString.h> |
38 #include <wtf/text/AtomicStringHash.h> | 38 #include <wtf/text/AtomicStringHash.h> |
39 #include <wtf/unicode/Unicode.h> | 39 #include <wtf/unicode/Unicode.h> |
40 | 40 |
41 namespace WebCore { | 41 namespace WebCore { |
42 | 42 |
43 class Page; | 43 class Page; |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 static bool gUsesOverlayScrollbars; | 207 static bool gUsesOverlayScrollbars; |
208 | 208 |
209 #if USE(SAFARI_THEME) | 209 #if USE(SAFARI_THEME) |
210 static bool gShouldPaintNativeControls; | 210 static bool gShouldPaintNativeControls; |
211 #endif | 211 #endif |
212 }; | 212 }; |
213 | 213 |
214 } // namespace WebCore | 214 } // namespace WebCore |
215 | 215 |
216 #endif // Settings_h | 216 #endif // Settings_h |
OLD | NEW |