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

Unified Diff: Source/WebCore/page/Settings.cpp

Issue 13529026: Removing a bunch of unused platform code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix whitespace and compiler error on Mac. Created 7 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
« no previous file with comments | « Source/WebCore/page/Settings.h ('k') | Source/WebCore/platform/ContextMenu.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/page/Settings.cpp
diff --git a/Source/WebCore/page/Settings.cpp b/Source/WebCore/page/Settings.cpp
index 25457eccb03d396037e7533eb8bcf493fc5fa6a2..58ac615ac5cc8c87d8ef4a95efa61464be5dd712 100644
--- a/Source/WebCore/page/Settings.cpp
+++ b/Source/WebCore/page/Settings.cpp
@@ -96,10 +96,6 @@ bool Settings::gShouldPaintNativeControls = true;
bool Settings::gAVFoundationEnabled = false;
#endif
-#if PLATFORM(MAC) || (PLATFORM(QT) && USE(QTKIT))
-bool Settings::gQTKitEnabled = true;
-#endif
-
bool Settings::gMockScrollbarsEnabled = false;
bool Settings::gUsesOverlayScrollbars = false;
@@ -559,17 +555,6 @@ void Settings::setAVFoundationEnabled(bool enabled)
}
#endif
-#if PLATFORM(MAC) || (PLATFORM(QT) && USE(QTKIT))
-void Settings::setQTKitEnabled(bool enabled)
-{
- if (gQTKitEnabled == enabled)
- return;
-
- gQTKitEnabled = enabled;
- HTMLMediaElement::resetMediaEngines();
-}
-#endif
-
void Settings::setScrollingPerformanceLoggingEnabled(bool enabled)
{
m_scrollingPerformanceLoggingEnabled = enabled;
« no previous file with comments | « Source/WebCore/page/Settings.h ('k') | Source/WebCore/platform/ContextMenu.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698