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

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

Issue 13725007: Remove the ENABLE_JAVASCRIPT_I18N_API compile time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove the flags altogether. 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/public/WebRuntimeFeatures.h ('k') | Source/bindings/v8/RuntimeEnabledFeatures.h » ('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 08b9a04dd0eb66b081d98c007ee0152f135bd1f7..41deba754d8c32189627f675fbba53fa565fe2f2 100644
--- a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
+++ b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
@@ -223,22 +223,6 @@ bool WebRuntimeFeatures::isFileSystemEnabled()
return RuntimeEnabledFeatures::fileSystemEnabled();
}
-void WebRuntimeFeatures::enableJavaScriptI18NAPI(bool enable)
-{
-#if ENABLE(JAVASCRIPT_I18N_API)
- RuntimeEnabledFeatures::setJavaScriptI18NAPIEnabled(enable);
-#endif
-}
-
-bool WebRuntimeFeatures::isJavaScriptI18NAPIEnabled()
-{
-#if ENABLE(JAVASCRIPT_I18N_API)
- return RuntimeEnabledFeatures::javaScriptI18NAPIEnabled();
-#else
- return false;
-#endif
-}
-
void WebRuntimeFeatures::enableQuota(bool enable)
{
RuntimeEnabledFeatures::setQuotaEnabled(enable);
« no previous file with comments | « Source/WebKit/chromium/public/WebRuntimeFeatures.h ('k') | Source/bindings/v8/RuntimeEnabledFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698