Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: Source/WebCore/page/Settings.cpp

Issue 8506028: Merge 99485 - Source/WebCore: Create a separate setting for compositing of for scrollable [i]frames (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/912/
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/WebCore/page/Settings.h ('k') | Source/WebCore/rendering/RenderLayerCompositor.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/WebCore/page/Settings.h ('k') | Source/WebCore/rendering/RenderLayerCompositor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698