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

Unified Diff: Source/WebCore/platform/network/BlobData.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
« no previous file with comments | « Source/WebCore/platform/network/BlobData.h ('k') | Source/WebCore/platform/network/BlobRegistryImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/platform/network/BlobData.cpp
diff --git a/Source/WebCore/platform/network/BlobData.cpp b/Source/WebCore/platform/network/BlobData.cpp
index bc17949c1fef7ae8b83bc3810e83d3ae91cb0cbc..b816c486471a5548e08c9b85e4238d791a561814 100644
--- a/Source/WebCore/platform/network/BlobData.cpp
+++ b/Source/WebCore/platform/network/BlobData.cpp
@@ -91,12 +91,10 @@ void BlobData::appendBlob(const KURL& url, long long offset, long long length)
m_items.append(BlobDataItem(url, offset, length));
}
-#if ENABLE(FILE_SYSTEM)
void BlobData::appendURL(const KURL& url, long long offset, long long length, double expectedModificationTime)
{
m_items.append(BlobDataItem(url, offset, length, expectedModificationTime));
}
-#endif
void BlobData::swapItems(BlobDataItemList& items)
{
« no previous file with comments | « Source/WebCore/platform/network/BlobData.h ('k') | Source/WebCore/platform/network/BlobRegistryImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698