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

Unified Diff: client/dom/generated/src/frog/Notification.dart

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native Created 8 years, 11 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/frog/Notification.dart
diff --git a/client/dom/generated/src/frog/Notification.dart b/client/dom/generated/src/frog/Notification.dart
index 0646dda843c1a274153430808fed90f9895bc539..5cf48d42dc1e5407b7742e4bd4bc5a2aaf26e1c4 100644
--- a/client/dom/generated/src/frog/Notification.dart
+++ b/client/dom/generated/src/frog/Notification.dart
@@ -1,13 +1,9 @@
class _NotificationJs extends _DOMTypeJs implements Notification native "*Notification" {
- String get dir() native "return this.dir;";
+ String dir;
- void set dir(String value) native "this.dir = value;";
-
- String get replaceId() native "return this.replaceId;";
-
- void set replaceId(String value) native "this.replaceId = value;";
+ String replaceId;
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;

Powered by Google App Engine
This is Rietveld 408576698