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

Unified Diff: Source/WebCore/html/FileInputType.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/html/FileInputType.h ('k') | Source/WebCore/html/HTMLInputElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
{
« no previous file with comments | « Source/WebCore/html/FileInputType.h ('k') | Source/WebCore/html/HTMLInputElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698