Index: tools/dom/src/_chrome/app_runtime.dart |
diff --git a/tools/dom/src/_chrome/app_runtime.dart b/tools/dom/src/_chrome/app_runtime.dart |
index 31aa9cd120ebbc642d871d64ad56214c5026ae91..03658f0a5c59c1a84a9db89cd98af3ad3a9b298e 100644 |
--- a/tools/dom/src/_chrome/app_runtime.dart |
+++ b/tools/dom/src/_chrome/app_runtime.dart |
@@ -32,14 +32,14 @@ class AppRuntimeLaunchItem extends ChromeObject { |
/// FileEntry for the file. |
FileEntry get entry => JS('FileEntry', '#.entry', this._jsObject); |
- void set entry(FileEntry entry) { |
+ set entry(FileEntry entry) { |
JS('void', '#.entry = #', this._jsObject, convertArgument(entry)); |
} |
/// The MIME type of the file. |
String get type => JS('String', '#.type', this._jsObject); |
- void set type(String type) { |
+ set type(String type) { |
JS('void', '#.type = #', this._jsObject, type); |
} |
@@ -67,7 +67,7 @@ class AppRuntimeLaunchData extends ChromeObject { |
/// The id of the file handler that the app is being invoked with. |
String get id => JS('String', '#.id', this._jsObject); |
- void set id(String id) { |
+ set id(String id) { |
JS('void', '#.id = #', this._jsObject, id); |
} |
@@ -81,7 +81,7 @@ class AppRuntimeLaunchData extends ChromeObject { |
return __proxy_items; |
} |
- void set items(List<AppRuntimeLaunchItem> items) { |
+ set items(List<AppRuntimeLaunchItem> items) { |
JS('void', '#.items = #', this._jsObject, convertArgument(items)); |
} |