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

Unified Diff: client/dom/generated/src/interface/HTMLAnchorElement.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 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
Index: client/dom/generated/src/interface/HTMLAnchorElement.dart
diff --git a/client/dom/generated/src/interface/HTMLAnchorElement.dart b/client/dom/generated/src/interface/HTMLAnchorElement.dart
index 157057d0c0579ab6d6c67b45d2d7c15b35a6b3c2..71b429229cc6257e76720f4e8680b9ece64ea85c 100644
--- a/client/dom/generated/src/interface/HTMLAnchorElement.dart
+++ b/client/dom/generated/src/interface/HTMLAnchorElement.dart
@@ -6,85 +6,47 @@
interface HTMLAnchorElement extends HTMLElement {
- String get charset();
+ String charset;
- void set charset(String value);
+ String coords;
- String get coords();
+ String download;
- void set coords(String value);
+ String hash;
- String get download();
+ String host;
- void set download(String value);
+ String hostname;
- String get hash();
+ String href;
- void set hash(String value);
+ String hreflang;
- String get host();
+ String name;
- void set host(String value);
+ final String origin;
- String get hostname();
+ String pathname;
- void set hostname(String value);
+ String ping;
- String get href();
+ String port;
- void set href(String value);
+ String protocol;
- String get hreflang();
+ String rel;
- void set hreflang(String value);
+ String rev;
- String get name();
+ String search;
- void set name(String value);
+ String shape;
- String get origin();
+ String target;
- String get pathname();
+ final String text;
- void set pathname(String value);
-
- String get ping();
-
- void set ping(String value);
-
- String get port();
-
- void set port(String value);
-
- String get protocol();
-
- void set protocol(String value);
-
- String get rel();
-
- void set rel(String value);
-
- String get rev();
-
- void set rev(String value);
-
- String get search();
-
- void set search(String value);
-
- String get shape();
-
- void set shape(String value);
-
- String get target();
-
- void set target(String value);
-
- String get text();
-
- String get type();
-
- void set type(String value);
+ String type;
String toString();
}

Powered by Google App Engine
This is Rietveld 408576698