| Index: Source/core/page/Settings.cpp
|
| diff --git a/Source/core/page/Settings.cpp b/Source/core/page/Settings.cpp
|
| index 8d53b2baee2bd30117ac60a31d1b44316a601941..6091b6c9dcc4ae466e29a6fb1279659e8ab4f16b 100644
|
| --- a/Source/core/page/Settings.cpp
|
| +++ b/Source/core/page/Settings.cpp
|
| @@ -385,4 +385,18 @@ bool Settings::usesOverlayScrollbars()
|
| return gUsesOverlayScrollbars;
|
| }
|
|
|
| +void Settings::setOpenGLMultisamplingEnabled(bool flag)
|
| +{
|
| + if(m_openGLMultisamplingEnabled == flag)
|
| + return;
|
| +
|
| + m_openGLMultisamplingEnabled = flag;
|
| + m_page->multisamplingChanged();
|
| +}
|
| +
|
| +bool Settings::openGLMultisamplingEnabled()
|
| +{
|
| + return m_openGLMultisamplingEnabled;
|
| +}
|
| +
|
| } // namespace WebCore
|
|
|