| Index: Source/WebCore/fileapi/Blob.cpp
 | 
| diff --git a/Source/WebCore/fileapi/Blob.cpp b/Source/WebCore/fileapi/Blob.cpp
 | 
| index 291a227298a767eeadaaf9fea6c09b6cd4ef21cf..dafc90a642210ba5d0d9bfc99fbddbcc011fafef 100644
 | 
| --- a/Source/WebCore/fileapi/Blob.cpp
 | 
| +++ b/Source/WebCore/fileapi/Blob.cpp
 | 
| @@ -124,12 +124,10 @@ PassRefPtr<Blob> Blob::slice(long long start, long long end, const String& conte
 | 
|      OwnPtr<BlobData> blobData = BlobData::create();
 | 
|      blobData->setContentType(contentType);
 | 
|      if (isFile()) {
 | 
| -#if ENABLE(FILE_SYSTEM)
 | 
|          if (!toFile(this)->fileSystemURL().isEmpty())
 | 
|              blobData->appendURL(toFile(this)->fileSystemURL(), start, length, modificationTime);
 | 
|          else
 | 
| -#endif
 | 
| -        blobData->appendFile(toFile(this)->path(), start, length, modificationTime);
 | 
| +            blobData->appendFile(toFile(this)->path(), start, length, modificationTime);
 | 
|      } else
 | 
|          blobData->appendBlob(m_internalURL, start, length);
 | 
|  
 | 
| 
 |