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

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

Issue 13497009: Remove ENABLE(FILE_SYSTEM) compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: added CodeGeneratorInspector.py change 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
Index: Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
diff --git a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
index 128ea1dea5b4aa10e5651c767514d096b92e47b2..be6e8ae9cf8b53ef77b79ad2b007b826e23d0960 100644
--- a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
+++ b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
@@ -279,18 +279,12 @@ bool WebRuntimeFeatures::isXHRResponseBlobEnabled()
void WebRuntimeFeatures::enableFileSystem(bool enable)
{
-#if ENABLE(FILE_SYSTEM)
RuntimeEnabledFeatures::setFileSystemEnabled(enable);
-#endif
}
bool WebRuntimeFeatures::isFileSystemEnabled()
{
-#if ENABLE(FILE_SYSTEM)
return RuntimeEnabledFeatures::fileSystemEnabled();
-#else
- return false;
-#endif
}
void WebRuntimeFeatures::enableJavaScriptI18NAPI(bool enable)
« no previous file with comments | « Source/WebKit/chromium/src/WebFileSystemCallbacksImpl.cpp ('k') | Source/WebKit/chromium/src/WorkerAsyncFileSystemChromium.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698