summaryrefslogtreecommitdiffstats
path: root/WebCore/html/FileReader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/FileReader.cpp')
-rw-r--r--WebCore/html/FileReader.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/WebCore/html/FileReader.cpp b/WebCore/html/FileReader.cpp
index 3442342..2e020c1 100644
--- a/WebCore/html/FileReader.cpp
+++ b/WebCore/html/FileReader.cpp
@@ -85,6 +85,7 @@ void FileReader::stop()
void FileReader::readAsBinaryString(Blob* fileBlob)
{
+ // FIXME: needs to handle non-file blobs.
LOG(FileAPI, "FileReader: reading as binary: %s\n", fileBlob->path().utf8().data());
readInternal(fileBlob, ReadFileAsBinaryString);
@@ -92,6 +93,7 @@ void FileReader::readAsBinaryString(Blob* fileBlob)
void FileReader::readAsText(Blob* fileBlob, const String& encoding)
{
+ // FIXME: needs to handle non-file blobs.
LOG(FileAPI, "FileReader: reading as text: %s\n", fileBlob->path().utf8().data());
if (!encoding.isEmpty())