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

Unified Diff: Source/WebCore/page/SecurityOrigin.cpp

Issue 13497009: Remove ENABLE(FILE_SYSTEM) compile-time flag. (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
Index: Source/WebCore/page/SecurityOrigin.cpp
diff --git a/Source/WebCore/page/SecurityOrigin.cpp b/Source/WebCore/page/SecurityOrigin.cpp
index d8ec10acb8177c44d7ce861b59e8f572d5f3fb45..fc48911dcdd9a75909a0b8958785c674c8c62cc7 100644
--- a/Source/WebCore/page/SecurityOrigin.cpp
+++ b/Source/WebCore/page/SecurityOrigin.cpp
@@ -60,10 +60,8 @@ bool SecurityOrigin::shouldUseInnerURL(const KURL& url)
if (url.protocolIs("blob"))
return true;
#endif
-#if ENABLE(FILE_SYSTEM)
if (url.protocolIs("filesystem"))
return true;
-#endif
UNUSED_PARAM(url);
return false;
}

Powered by Google App Engine
This is Rietveld 408576698