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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 36f8e9d450ba7183a5cab97ba011f6a80a6ec21a..1a21f5b4124dee23ec4d3d86d8715463a0e0edd6 100644
--- a/client/dom/generated/src/frog/Notification.dart
+++ b/client/dom/generated/src/frog/Notification.dart
@@ -1,9 +1,13 @@
class Notification native "*Notification" {
- String dir;
+ String get dir() native "return this.dir;";
- String replaceId;
+ 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;";
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
« no previous file with comments | « client/dom/generated/src/frog/Notation.dart ('k') | client/dom/generated/src/frog/OfflineAudioCompletionEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698