| Index: Source/WebCore/html/FileInputType.cpp
 | 
| diff --git a/Source/WebCore/html/FileInputType.cpp b/Source/WebCore/html/FileInputType.cpp
 | 
| index b0cff83272def7d9c0db88bce68b5e0daca2d5ef..3e0aca8f1307d0a9275fd828fd0571656ed2512e 100644
 | 
| --- a/Source/WebCore/html/FileInputType.cpp
 | 
| +++ b/Source/WebCore/html/FileInputType.cpp
 | 
| @@ -417,9 +417,7 @@ bool FileInputType::receiveDroppedFiles(const DragData* dragData)
 | 
|      }
 | 
|  #endif
 | 
|  
 | 
| -#if ENABLE(FILE_SYSTEM)
 | 
|      m_droppedFileSystemId = dragData->droppedFileSystemId();
 | 
| -#endif
 | 
|  
 | 
|      Vector<FileChooserFileInfo> files;
 | 
|      for (unsigned i = 0; i < paths.size(); ++i)
 | 
| @@ -435,12 +433,10 @@ bool FileInputType::receiveDroppedFiles(const DragData* dragData)
 | 
|      return true;
 | 
|  }
 | 
|  
 | 
| -#if ENABLE(FILE_SYSTEM)
 | 
|  String FileInputType::droppedFileSystemId()
 | 
|  {
 | 
|      return m_droppedFileSystemId;
 | 
|  }
 | 
| -#endif
 | 
|  
 | 
|  Icon* FileInputType::icon() const
 | 
|  {
 | 
| 
 |