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

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

Issue 14467003: Remove ENABLE_DIALOG_ELEMENT (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | « no previous file | Source/core/css/StyleResolver.cpp » ('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 6c029fdbaa190c30ab064fef1195456951a03dbe..251a292b7d5190defc988fe0b3108d8c420044d7 100644
--- a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
+++ b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
@@ -416,20 +416,12 @@ bool WebRuntimeFeatures::isInputTypeWeekEnabled()
void WebRuntimeFeatures::enableDialogElement(bool enable)
{
-#if ENABLE(DIALOG_ELEMENT)
RuntimeEnabledFeatures::setDialogElementEnabled(enable);
-#else
- UNUSED_PARAM(enable);
-#endif
}
bool WebRuntimeFeatures::isDialogElementEnabled()
{
-#if ENABLE(DIALOG_ELEMENT)
return RuntimeEnabledFeatures::dialogElementEnabled();
-#else
- return false;
-#endif
abarth-chromium 2013/04/25 03:59:33 LGTM
}
void WebRuntimeFeatures::enableLazyLayout(bool enable)
« no previous file with comments | « no previous file | Source/core/css/StyleResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698