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

Unified Diff: Source/WebKit/chromium/src/WebRuntimeFeatures.cpp

Issue 13646006: Remove the ENABLE_IFRAME_SEAMLESS compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline. 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/WebKit/chromium/features.gypi ('k') | Tools/Scripts/webkitperl/FeatureList.pm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
diff --git a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
index 87befc98fb8cf519feff4af22297f957ac5066e7..fba955ffd85494c27fcb0ae2bfae15dc0ce12853 100644
--- a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
+++ b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
@@ -642,20 +642,12 @@ bool WebRuntimeFeatures::isExperimentalContentSecurityPolicyFeaturesEnabled()
void WebRuntimeFeatures::enableSeamlessIFrames(bool enable)
{
-#if ENABLE(IFRAME_SEAMLESS)
return RuntimeEnabledFeatures::setSeamlessIFramesEnabled(enable);
-#else
- UNUSED_PARAM(enable);
-#endif
}
bool WebRuntimeFeatures::areSeamlessIFramesEnabled()
{
-#if ENABLE(IFRAME_SEAMLESS)
return RuntimeEnabledFeatures::seamlessIFramesEnabled();
-#else
- return false;
-#endif
}
void WebRuntimeFeatures::enableCanvasPath(bool enable)
« no previous file with comments | « Source/WebKit/chromium/features.gypi ('k') | Tools/Scripts/webkitperl/FeatureList.pm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698