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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 bool m_cssVariablesEnabled : 1; | 194 bool m_cssVariablesEnabled : 1; |
195 bool m_dnsPrefetchingEnabled : 1; | 195 bool m_dnsPrefetchingEnabled : 1; |
196 | 196 |
197 bool m_touchEventEmulationEnabled : 1; | 197 bool m_touchEventEmulationEnabled : 1; |
198 | 198 |
199 Timer<Settings> m_setImageLoadingSettingsTimer; | 199 Timer<Settings> m_setImageLoadingSettingsTimer; |
200 void imageLoadingSettingsTimerFired(Timer<Settings>*); | 200 void imageLoadingSettingsTimerFired(Timer<Settings>*); |
201 | 201 |
202 static bool gMockScrollbarsEnabled; | 202 static bool gMockScrollbarsEnabled; |
203 static bool gUsesOverlayScrollbars; | 203 static bool gUsesOverlayScrollbars; |
204 | |
205 #if USE(SAFARI_THEME) | |
206 static bool gShouldPaintNativeControls; | |
207 #endif | |
208 }; | 204 }; |
209 | 205 |
210 } // namespace WebCore | 206 } // namespace WebCore |
211 | 207 |
212 #endif // Settings_h | 208 #endif // Settings_h |
OLD | NEW |