| 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 22 matching lines...) Expand all Loading... |
| 33 #include "core/SettingsMacros.h" | 33 #include "core/SettingsMacros.h" |
| 34 #include "core/editing/EditingBehaviorTypes.h" | 34 #include "core/editing/EditingBehaviorTypes.h" |
| 35 #include "core/editing/SelectionStrategy.h" | 35 #include "core/editing/SelectionStrategy.h" |
| 36 #include "core/events/AddEventListenerOptionsDefaults.h" | 36 #include "core/events/AddEventListenerOptionsDefaults.h" |
| 37 #include "core/frame/SettingsDelegate.h" | 37 #include "core/frame/SettingsDelegate.h" |
| 38 #include "core/html/track/TextTrackKindUserPreference.h" | 38 #include "core/html/track/TextTrackKindUserPreference.h" |
| 39 #include "core/loader/FrameLoaderTypes.h" | 39 #include "core/loader/FrameLoaderTypes.h" |
| 40 #include "platform/Timer.h" | 40 #include "platform/Timer.h" |
| 41 #include "platform/fonts/GenericFontFamilySettings.h" | 41 #include "platform/fonts/GenericFontFamilySettings.h" |
| 42 #include "platform/geometry/IntSize.h" | 42 #include "platform/geometry/IntSize.h" |
| 43 #include "platform/graphics/Color.h" |
| 43 #include "platform/graphics/ImageAnimationPolicy.h" | 44 #include "platform/graphics/ImageAnimationPolicy.h" |
| 44 #include "platform/weborigin/KURL.h" | 45 #include "platform/weborigin/KURL.h" |
| 45 #include "public/platform/PointerProperties.h" | 46 #include "public/platform/PointerProperties.h" |
| 46 #include "public/platform/WebDisplayMode.h" | 47 #include "public/platform/WebDisplayMode.h" |
| 47 #include "public/platform/WebViewportStyle.h" | 48 #include "public/platform/WebViewportStyle.h" |
| 48 #include <memory> | 49 #include <memory> |
| 49 | 50 |
| 50 namespace blink { | 51 namespace blink { |
| 51 | 52 |
| 52 class CORE_EXPORT Settings { | 53 class CORE_EXPORT Settings { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 83 GenericFontFamilySettings m_genericFontFamilySettings; | 84 GenericFontFamilySettings m_genericFontFamilySettings; |
| 84 IntSize m_textAutosizingWindowSizeOverride; | 85 IntSize m_textAutosizingWindowSizeOverride; |
| 85 bool m_textAutosizingEnabled : 1; | 86 bool m_textAutosizingEnabled : 1; |
| 86 | 87 |
| 87 SETTINGS_MEMBER_VARIABLES | 88 SETTINGS_MEMBER_VARIABLES |
| 88 }; | 89 }; |
| 89 | 90 |
| 90 } // namespace blink | 91 } // namespace blink |
| 91 | 92 |
| 92 #endif // Settings_h | 93 #endif // Settings_h |
| OLD | NEW |