Chromium Code Reviews| 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) |
|
abarth-chromium
2013/05/07 22:10:59
Missing a space between "if" and "(".
|
| + return; |
| + |
| + m_openGLMultisamplingEnabled = flag; |
| + m_page->multisamplingChanged(); |
|
abarth-chromium
2013/05/07 22:10:59
We discussed filing a bug about removing this code
|
| +} |
| + |
| +bool Settings::openGLMultisamplingEnabled() |
| +{ |
| + return m_openGLMultisamplingEnabled; |
| +} |
| + |
| } // namespace WebCore |