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

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

Issue 1345083002: Revert "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/_chrome/file_system.dart ('k') | tools/dom/src/dart2js_DOMImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/src/_chrome/utils.dart
diff --git a/tools/dom/src/_chrome/utils.dart b/tools/dom/src/_chrome/utils.dart
index 6770113de7e8b26aeb16067a416b3759212a7382..b88019cf45c65393fd1710511d64150fe6d9275e 100644
--- a/tools/dom/src/_chrome/utils.dart
+++ b/tools/dom/src/_chrome/utils.dart
@@ -117,27 +117,27 @@ class Rule extends ChromeObject {
*/
String get id => JS('String', '#.id', this._jsObject);
- set id(String id) {
+ void set id(String id) {
JS('void', '#.id = #', this._jsObject, id);
}
// TODO(sashab): Wrap these generic Lists somehow.
List get conditions => JS('List', '#.conditions', this._jsObject);
- set conditions(List conditions) {
+ void set conditions(List conditions) {
JS('void', '#.conditions = #', this._jsObject, convertArgument(conditions));
}
// TODO(sashab): Wrap these generic Lists somehow.
List get actions => JS('List', '#.actions', this._jsObject);
- set actions(List actions) {
+ void set actions(List actions) {
JS('void', '#.actions = #', this._jsObject, convertArgument(actions));
}
int get priority => JS('int', '#.priority', this._jsObject);
- set priority(int priority) {
+ void set priority(int priority) {
JS('void', '#.priority = #', this._jsObject, priority);
}
« no previous file with comments | « tools/dom/src/_chrome/file_system.dart ('k') | tools/dom/src/dart2js_DOMImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698