| 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 SKY_ENGINE_CORE_FRAME_SETTINGS_H_ | 27 #ifndef SKY_ENGINE_CORE_FRAME_SETTINGS_H_ |
| 28 #define SKY_ENGINE_CORE_FRAME_SETTINGS_H_ | 28 #define SKY_ENGINE_CORE_FRAME_SETTINGS_H_ |
| 29 | 29 |
| 30 #include "gen/sky/core/SettingsMacros.h" | 30 #include "gen/sky/core/SettingsMacros.h" |
| 31 #include "sky/engine/bindings/core/v8/V8CacheOptions.h" | |
| 32 #include "sky/engine/core/css/PointerProperties.h" | 31 #include "sky/engine/core/css/PointerProperties.h" |
| 33 #include "sky/engine/core/frame/SettingsDelegate.h" | 32 #include "sky/engine/core/frame/SettingsDelegate.h" |
| 34 #include "sky/engine/platform/Timer.h" | 33 #include "sky/engine/platform/Timer.h" |
| 35 #include "sky/engine/platform/fonts/GenericFontFamilySettings.h" | 34 #include "sky/engine/platform/fonts/GenericFontFamilySettings.h" |
| 36 #include "sky/engine/platform/geometry/IntSize.h" | 35 #include "sky/engine/platform/geometry/IntSize.h" |
| 37 #include "sky/engine/platform/weborigin/KURL.h" | 36 #include "sky/engine/platform/weborigin/KURL.h" |
| 38 #include "sky/engine/wtf/HashSet.h" | 37 #include "sky/engine/wtf/HashSet.h" |
| 39 #include "sky/engine/wtf/RefCounted.h" | 38 #include "sky/engine/wtf/RefCounted.h" |
| 40 | 39 |
| 41 namespace blink { | 40 namespace blink { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 66 | 65 |
| 67 GenericFontFamilySettings m_genericFontFamilySettings; | 66 GenericFontFamilySettings m_genericFontFamilySettings; |
| 68 bool m_openGLMultisamplingEnabled : 1; | 67 bool m_openGLMultisamplingEnabled : 1; |
| 69 | 68 |
| 70 SETTINGS_MEMBER_VARIABLES | 69 SETTINGS_MEMBER_VARIABLES |
| 71 }; | 70 }; |
| 72 | 71 |
| 73 } // namespace blink | 72 } // namespace blink |
| 74 | 73 |
| 75 #endif // SKY_ENGINE_CORE_FRAME_SETTINGS_H_ | 74 #endif // SKY_ENGINE_CORE_FRAME_SETTINGS_H_ |
| OLD | NEW |