| Index: Source/WebCore/page/Settings.h
|
| ===================================================================
|
| --- Source/WebCore/page/Settings.h (revision 99757)
|
| +++ Source/WebCore/page/Settings.h (working copy)
|
| @@ -319,6 +319,9 @@
|
| void setAcceleratedCompositingForAnimationEnabled(bool);
|
| bool acceleratedCompositingForAnimationEnabled() const { return m_acceleratedCompositingForAnimationEnabled; }
|
|
|
| + void setAcceleratedCompositingForScrollableFramesEnabled(bool enabled) { m_acceleratedCompositingForScrollableFramesEnabled = enabled; }
|
| + bool acceleratedCompositingForScrollableFramesEnabled() const { return m_acceleratedCompositingForScrollableFramesEnabled; }
|
| +
|
| void setShowDebugBorders(bool);
|
| bool showDebugBorders() const { return m_showDebugBorders; }
|
|
|
| @@ -552,6 +555,7 @@
|
| bool m_acceleratedCompositingForPluginsEnabled : 1;
|
| bool m_acceleratedCompositingForCanvasEnabled : 1;
|
| bool m_acceleratedCompositingForAnimationEnabled : 1;
|
| + bool m_acceleratedCompositingForScrollableFramesEnabled : 1; // Works only in conjunction with forceCompositingMode
|
| bool m_showDebugBorders : 1;
|
| bool m_showRepaintCounter : 1;
|
| bool m_experimentalNotificationsEnabled : 1;
|
|
|