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

Unified Diff: core/dom/URL.idl

Issue 581453002: Dartium Roll 38 roll (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Sync'd w/ r 182210 Created 6 years, 3 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 | « core/dom/Touch.idl ('k') | core/dom/URLUtils.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/dom/URL.idl
diff --git a/core/dom/URL.idl b/core/dom/URL.idl
index 37b80510f3c69fb2c7035293b90d4cc9480ba140..64f14fbf6808bea9e27f79e752e8690e97a529d9 100644
--- a/core/dom/URL.idl
+++ b/core/dom/URL.idl
@@ -27,10 +27,10 @@
// http://url.spec.whatwg.org/#url
[
- Constructor(DOMString url),
- Constructor(DOMString url, DOMString base),
- Constructor(DOMString url, URL base),
- Exposed=Window&Worker,
+ Constructor(ScalarValueString url),
+ Constructor(ScalarValueString url, ScalarValueString base),
+ Constructor(ScalarValueString url, URL base),
+ Exposed=(Window,Worker),
ImplementedAs=DOMURL,
RaisesException=Constructor,
WillBeGarbageCollected,
@@ -38,7 +38,7 @@
// FIXME: should be in separate URLBlob.idl partial interface definition
// http://dev.w3.org/2006/webapi/FileAPI/#URL-object
// FIXME: should not be nullable
- [RaisesException, CallWith=ExecutionContext, TreatReturnedNullStringAs=Null] static DOMString createObjectURL(Blob? blob);
+ [RaisesException, CallWith=ExecutionContext] static DOMString? createObjectURL(Blob? blob);
[CallWith=ExecutionContext] static void revokeObjectURL(DOMString url);
};
« no previous file with comments | « core/dom/Touch.idl ('k') | core/dom/URLUtils.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698