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

Unified Diff: third_party/WebKit/Source/core/frame/Settings.cpp

Issue 1849023003: Remove the MSAA WebSetting, which is not read or used. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rm-alphadepthetc
Patch Set: msaasettings: declareeager Created 4 years, 8 months 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/frame/Settings.cpp
diff --git a/third_party/WebKit/Source/core/frame/Settings.cpp b/third_party/WebKit/Source/core/frame/Settings.cpp
index 947ef3ecd33fb95277c06b05080da16702ffa25a..7ba6251ff7e4621b65d6bd39c844763840d76671 100644
--- a/third_party/WebKit/Source/core/frame/Settings.cpp
+++ b/third_party/WebKit/Source/core/frame/Settings.cpp
@@ -58,12 +58,11 @@ static const bool defaultSelectTrailingWhitespaceEnabled = false;
#endif
Settings::Settings()
- : m_openGLMultisamplingEnabled(false)
#if DEBUG_TEXT_AUTOSIZING_ON_DESKTOP
- , m_textAutosizingWindowSizeOverride(320, 480)
+ : m_textAutosizingWindowSizeOverride(320, 480)
, m_textAutosizingEnabled(true)
#else
- , m_textAutosizingEnabled(false)
+ : m_textAutosizingEnabled(false)
#endif
SETTINGS_INITIALIZER_LIST
{
@@ -116,13 +115,4 @@ bool Settings::mockScrollbarsEnabled()
return ScrollbarTheme::mockScrollbarsEnabled();
}
-void Settings::setOpenGLMultisamplingEnabled(bool flag)
-{
- if (m_openGLMultisamplingEnabled == flag)
- return;
-
- m_openGLMultisamplingEnabled = flag;
- invalidate(SettingsDelegate::MultisamplingChange);
-}
-
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/frame/Settings.h ('k') | third_party/WebKit/Source/core/frame/SettingsDelegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698