| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 // FIXME: This should really be disabled by default as it makes platforms th
at don't support the feature download files | 173 // FIXME: This should really be disabled by default as it makes platforms th
at don't support the feature download files |
| 174 // they can't use by. Leaving enabled for now to not change existing behavio
r. | 174 // they can't use by. Leaving enabled for now to not change existing behavio
r. |
| 175 , m_downloadableBinaryFontsEnabled(true) | 175 , m_downloadableBinaryFontsEnabled(true) |
| 176 , m_xssAuditorEnabled(false) | 176 , m_xssAuditorEnabled(false) |
| 177 , m_acceleratedCompositingEnabled(true) | 177 , m_acceleratedCompositingEnabled(true) |
| 178 , m_acceleratedCompositingFor3DTransformsEnabled(true) | 178 , m_acceleratedCompositingFor3DTransformsEnabled(true) |
| 179 , m_acceleratedCompositingForVideoEnabled(true) | 179 , m_acceleratedCompositingForVideoEnabled(true) |
| 180 , m_acceleratedCompositingForPluginsEnabled(true) | 180 , m_acceleratedCompositingForPluginsEnabled(true) |
| 181 , m_acceleratedCompositingForCanvasEnabled(true) | 181 , m_acceleratedCompositingForCanvasEnabled(true) |
| 182 , m_acceleratedCompositingForAnimationEnabled(true) | 182 , m_acceleratedCompositingForAnimationEnabled(true) |
| 183 , m_acceleratedCompositingForScrollableFramesEnabled(false) |
| 183 , m_showDebugBorders(false) | 184 , m_showDebugBorders(false) |
| 184 , m_showRepaintCounter(false) | 185 , m_showRepaintCounter(false) |
| 185 , m_experimentalNotificationsEnabled(false) | 186 , m_experimentalNotificationsEnabled(false) |
| 186 , m_webGLEnabled(false) | 187 , m_webGLEnabled(false) |
| 187 , m_openGLMultisamplingEnabled(true) | 188 , m_openGLMultisamplingEnabled(true) |
| 188 , m_webAudioEnabled(false) | 189 , m_webAudioEnabled(false) |
| 189 , m_acceleratedCanvas2dEnabled(false) | 190 , m_acceleratedCanvas2dEnabled(false) |
| 190 , m_legacyAcceleratedCanvas2dEnabled(false) | 191 , m_legacyAcceleratedCanvas2dEnabled(false) |
| 191 , m_loadDeferringEnabled(true) | 192 , m_loadDeferringEnabled(true) |
| 192 , m_tiledBackingStoreEnabled(false) | 193 , m_tiledBackingStoreEnabled(false) |
| (...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 { | 816 { |
| 816 gMockScrollbarsEnabled = flag; | 817 gMockScrollbarsEnabled = flag; |
| 817 } | 818 } |
| 818 | 819 |
| 819 bool Settings::mockScrollbarsEnabled() | 820 bool Settings::mockScrollbarsEnabled() |
| 820 { | 821 { |
| 821 return gMockScrollbarsEnabled; | 822 return gMockScrollbarsEnabled; |
| 822 } | 823 } |
| 823 | 824 |
| 824 } // namespace WebCore | 825 } // namespace WebCore |
| OLD | NEW |