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

Unified Diff: tools/dom/src/_chrome/app_runtime.dart

Issue 1349493003: Dartium JS Interop enabled. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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 | « tools/dom/src/WrappedList.dart ('k') | tools/dom/src/_chrome/app_window.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
}
« no previous file with comments | « tools/dom/src/WrappedList.dart ('k') | tools/dom/src/_chrome/app_window.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698