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

Unified Diff: Source/web/WebRuntimeFeatures.cpp

Issue 366473002: Remove unused exposed APIs for WebRuntimeFeatures (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 | « no previous file | public/web/WebRuntimeFeatures.h » ('j') | public/web/WebRuntimeFeatures.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebRuntimeFeatures.cpp
diff --git a/Source/web/WebRuntimeFeatures.cpp b/Source/web/WebRuntimeFeatures.cpp
index 019a9c34459e97c1604fa950fa6b26b9e4179fff..e0f81d22b222f7911ebf248a28277fd50bde5b52 100644
--- a/Source/web/WebRuntimeFeatures.cpp
+++ b/Source/web/WebRuntimeFeatures.cpp
@@ -67,11 +67,6 @@ void WebRuntimeFeatures::enableDatabase(bool enable)
RuntimeEnabledFeatures::setDatabaseEnabled(enable);
}
-void WebRuntimeFeatures::enableDialogElement(bool enable)
-{
- RuntimeEnabledFeatures::setDialogElementEnabled(enable);
-}
-
void WebRuntimeFeatures::enableEncryptedMedia(bool enable)
{
RuntimeEnabledFeatures::setEncryptedMediaEnabled(enable);
@@ -240,11 +235,6 @@ void WebRuntimeFeatures::enableWebMIDI(bool enable)
return RuntimeEnabledFeatures::setWebMIDIEnabled(enable);
}
-void WebRuntimeFeatures::enableHTMLImports(bool enable)
-{
- RuntimeEnabledFeatures::setHTMLImportsEnabled(enable);
-}
-
void WebRuntimeFeatures::enableXSLT(bool enable)
{
RuntimeEnabledFeatures::setXSLTEnabled(enable);
@@ -265,11 +255,6 @@ void WebRuntimeFeatures::enableSharedWorker(bool enable)
RuntimeEnabledFeatures::setSharedWorkerEnabled(enable);
}
-void WebRuntimeFeatures::enableExperimentalWebSocket(bool enable)
-{
- RuntimeEnabledFeatures::setExperimentalWebSocketEnabled(enable);
-}
-
void WebRuntimeFeatures::enableTargetedStyleRecalc(bool enable)
{
RuntimeEnabledFeatures::setTargetedStyleRecalcEnabled(enable);
@@ -290,9 +275,4 @@ void WebRuntimeFeatures::enableShowModalDialog(bool enable)
RuntimeEnabledFeatures::setShowModalDialogEnabled(enable);
}
-void WebRuntimeFeatures::enableLaxMixedContentChecking(bool enable)
-{
- RuntimeEnabledFeatures::setLaxMixedContentCheckingEnabled(enable);
-}
-
} // namespace blink
« no previous file with comments | « no previous file | public/web/WebRuntimeFeatures.h » ('j') | public/web/WebRuntimeFeatures.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698