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

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

Issue 2509833002: Make Blob#slice() contentType argument to be non nullable. (Closed)
Patch Set: Modified outdated tests Created 4 years, 1 month 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/Blob.idl
diff --git a/third_party/WebKit/Source/core/fileapi/Blob.idl b/third_party/WebKit/Source/core/fileapi/Blob.idl
index d4799ada38f7d89bc79a31b8935114732fa6334a..e8748fe7a48d4cf2990ffea4141fad67fe28e442 100644
--- a/third_party/WebKit/Source/core/fileapi/Blob.idl
+++ b/third_party/WebKit/Source/core/fileapi/Blob.idl
@@ -43,6 +43,6 @@ typedef (ArrayBuffer or ArrayBufferView or Blob or USVString) BlobPart;
// TODO(jsbell): start and end arguments should be [Clamp]
// TODO(foolip): contentType should not be nullable.
jsbell 2016/11/17 19:52:24 remove this comment too!
lunalu1 2016/11/17 20:03:01 My bad.
- [RaisesException] Blob slice(optional long long start, optional long long end, optional DOMString? contentType);
+ [RaisesException] Blob slice(optional long long start, optional long long end, optional DOMString contentType);
[RaisesException, CallWith=ExecutionContext, RuntimeEnabled=FileAPIBlobClose] void close();
};

Powered by Google App Engine
This is Rietveld 408576698