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

Unified Diff: third_party/WebKit/Source/core/fileapi/BlobCallback.idl

Issue 1599413005: Use BlobCallback in toBlob instead of FileCallback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding BlobCallback for toBlob Use 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/core/fileapi/BlobCallback.idl
diff --git a/third_party/WebKit/Source/core/fileapi/FileCallback.idl b/third_party/WebKit/Source/core/fileapi/BlobCallback.idl
similarity index 95%
copy from third_party/WebKit/Source/core/fileapi/FileCallback.idl
copy to third_party/WebKit/Source/core/fileapi/BlobCallback.idl
index 2a692ba166d82a4ce38c60ca81452a65e61ee5d8..e3ebb5e6f2e28c6decb0772c73a802812de17f77 100644
--- a/third_party/WebKit/Source/core/fileapi/FileCallback.idl
+++ b/third_party/WebKit/Source/core/fileapi/BlobCallback.idl
@@ -28,6 +28,6 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-callback interface FileCallback {
- void handleEvent(File file);
+callback interface BlobCallback {
philipj_slow 2016/01/19 22:28:14 Actually, the conclusion of http://code.google.com
+ void handleEvent(Blob? blob);
};

Powered by Google App Engine
This is Rietveld 408576698