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

Unified Diff: third_party/WebCore/fileapi/WebKitBlobBuilder.idl

Issue 10769002: Roll IDL to multivm@683 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix notifications path in fremontcut. Created 8 years, 5 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
« no previous file with comments | « third_party/WebCore/dom/WheelEvent.idl ('k') | third_party/WebCore/html/DOMTokenList.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/fileapi/WebKitBlobBuilder.idl
diff --git a/third_party/WebCore/fileapi/WebKitBlobBuilder.idl b/third_party/WebCore/fileapi/WebKitBlobBuilder.idl
index e3479a40ad8ee7da188aa46f1d8c5bc4ebc15428..8ec12802a02558649731c636a510b8e148af3cd4 100644
--- a/third_party/WebCore/fileapi/WebKitBlobBuilder.idl
+++ b/third_party/WebCore/fileapi/WebKitBlobBuilder.idl
@@ -39,10 +39,10 @@ module html {
#if !defined(LANGUAGE_OBJECTIVE_C)
Blob getBlob(in [Optional, TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString contentType);
#endif
- void append(in Blob blob);
+ void append(in Blob? blob);
#if defined(ENABLE_BLOB) && ENABLE_BLOB
- [CallWith=ScriptExecutionContext] void append(in ArrayBuffer arrayBuffer);
- void append(in ArrayBufferView arrayBufferView);
+ [CallWith=ScriptExecutionContext] void append(in ArrayBuffer? arrayBuffer);
+ void append(in ArrayBufferView? arrayBufferView);
#endif
void append(in DOMString value, in [Optional, TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString endings) raises (DOMException);
};
« no previous file with comments | « third_party/WebCore/dom/WheelEvent.idl ('k') | third_party/WebCore/html/DOMTokenList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698