| 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 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 #include "SettingsMacros.h" | 30 #include "SettingsMacros.h" |
| 31 #include "core/editing/EditingBehaviorTypes.h" | 31 #include "core/editing/EditingBehaviorTypes.h" |
| 32 #include "core/platform/Timer.h" | 32 #include "core/platform/Timer.h" |
| 33 #include "core/platform/graphics/FontRenderingMode.h" | 33 #include "core/platform/graphics/FontRenderingMode.h" |
| 34 #include "core/platform/graphics/IntSize.h" | 34 #include "core/platform/graphics/IntSize.h" |
| 35 #include "weborigin/KURL.h" | 35 #include "weborigin/KURL.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" | |
| 40 | 39 |
| 41 namespace WebCore { | 40 namespace WebCore { |
| 42 | 41 |
| 43 class Page; | 42 class Page; |
| 44 | 43 |
| 45 enum EditableLinkBehavior { | 44 enum EditableLinkBehavior { |
| 46 EditableLinkDefaultBehavior, | 45 EditableLinkDefaultBehavior, |
| 47 EditableLinkAlwaysLive, | 46 EditableLinkAlwaysLive, |
| 48 EditableLinkOnlyLiveWithShiftKey, | 47 EditableLinkOnlyLiveWithShiftKey, |
| 49 EditableLinkLiveWhenNotFocused, | 48 EditableLinkLiveWhenNotFocused, |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 Timer<Settings> m_setImageLoadingSettingsTimer; | 202 Timer<Settings> m_setImageLoadingSettingsTimer; |
| 204 void imageLoadingSettingsTimerFired(Timer<Settings>*); | 203 void imageLoadingSettingsTimerFired(Timer<Settings>*); |
| 205 | 204 |
| 206 static bool gMockScrollbarsEnabled; | 205 static bool gMockScrollbarsEnabled; |
| 207 static bool gUsesOverlayScrollbars; | 206 static bool gUsesOverlayScrollbars; |
| 208 }; | 207 }; |
| 209 | 208 |
| 210 } // namespace WebCore | 209 } // namespace WebCore |
| 211 | 210 |
| 212 #endif // Settings_h | 211 #endif // Settings_h |
| OLD | NEW |