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

Unified Diff: third_party/WebKit/Source/modules/filesystem/FileEntry.h

Issue 1609313002: Use BlobCallback in toBlob instead of FileCallback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase master and Renamed mimeType to contentType to match other bits in Blob.h Created 4 years, 11 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
Index: third_party/WebKit/Source/modules/filesystem/FileEntry.h
diff --git a/third_party/WebKit/Source/modules/filesystem/FileEntry.h b/third_party/WebKit/Source/modules/filesystem/FileEntry.h
index e06a28cc1f2e37ae57adffffbf7b1f04d1cb9434..d3809bff4964e3a32f6ece23ab4a95b0c628be3e 100644
--- a/third_party/WebKit/Source/modules/filesystem/FileEntry.h
+++ b/third_party/WebKit/Source/modules/filesystem/FileEntry.h
@@ -38,7 +38,7 @@
namespace blink {
class DOMFileSystemBase;
-class FileCallback;
+class BlobCallback;
class FileWriterCallback;
class MODULES_EXPORT FileEntry final : public Entry {
@@ -50,7 +50,7 @@ public:
}
void createWriter(FileWriterCallback*, ErrorCallback* = nullptr);
- void file(FileCallback*, ErrorCallback* = nullptr);
+ void file(BlobCallback*, ErrorCallback* = nullptr);
bool isFile() const override { return true; }

Powered by Google App Engine
This is Rietveld 408576698