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

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

Issue 2509833002: Make Blob#slice() contentType argument to be non nullable. (Closed)
Patch Set: Reformat layout 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
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/local/fileapi/script-tests/send-sliced-dragged-file.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..40f7e0b40122b6d693a54357da89dbae481244da 100644
--- a/third_party/WebKit/Source/core/fileapi/Blob.idl
+++ b/third_party/WebKit/Source/core/fileapi/Blob.idl
@@ -42,7 +42,6 @@ typedef (ArrayBuffer or ArrayBufferView or Blob or USVString) BlobPart;
[RuntimeEnabled=FileAPIBlobClose] readonly attribute boolean isClosed;
// TODO(jsbell): start and end arguments should be [Clamp]
- // TODO(foolip): contentType should not be nullable.
- [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();
};
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/local/fileapi/script-tests/send-sliced-dragged-file.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698