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

Unified Diff: tools/dom/idl/dart/dart.idl

Issue 16308002: Fixes for Blink roll to r151189 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 | « no previous file | tools/dom/scripts/dartmetadata.py » ('j') | tools/dom/scripts/fremontcutbuilder.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/idl/dart/dart.idl
diff --git a/tools/dom/idl/dart/dart.idl b/tools/dom/idl/dart/dart.idl
index b307156119ab8f044210fdc2e068e086a48af48c..f5247f256ff39b249aa872eacc82d06a9347e59b 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -240,7 +240,7 @@ interface MutationObserver {
CustomConstructor,
// Provide missing constructor signature.
Constructor(optional HTMLFormElement form)]
-interface DOMFormData {
+interface FormData {
[Suppressed] void append(DOMString name, DOMString value, DOMString filename);
[Custom] void append(DOMString name, DOMString value);
[Custom] void append(DOMString name, Blob value, optional DOMString filename);
@@ -277,7 +277,7 @@ interface XMLHttpRequest {
[Custom] void send(Blob data);
[Custom] void send(Document data);
[Custom] void send([StrictTypeChecking] DOMString data);
- [Custom] void send(DOMFormData data);
+ [Custom] void send(FormData data);
};
@@ -297,5 +297,20 @@ interface InspectorFrontendHost {};
interface JavaScriptCallFrame {};
-[Suppressed]
-interface Entity {};
+[Supplemental]
+interface Location {
Anton Muhin 2013/06/03 09:02:19 we probably should file a bug to remove those over
vsm 2013/06/03 14:59:50 Done - 11043 On 2013/06/03 09:02:19, Anton Muhin
+ [CustomSetter] attribute DOMString href;
+
+ [Custom] void assign(optional DOMString url);
+ [Custom] void replace([Default=Undefined] optional DOMString url);
+ [Custom] void reload();
+
+ // URI decomposition attributes
+ [CustomSetter] attribute DOMString protocol;
+ [CustomSetter] attribute DOMString host;
+ [CustomSetter] attribute DOMString hostname;
+ [CustomSetter] attribute DOMString port;
+ [CustomSetter] attribute DOMString pathname;
+ [CustomSetter] attribute DOMString search;
+ [CustomSetter] attribute DOMString hash;
+};
« no previous file with comments | « no previous file | tools/dom/scripts/dartmetadata.py » ('j') | tools/dom/scripts/fremontcutbuilder.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698