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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLStyleElementWrappingImplementation.dart

Issue 9323028: Support 'Conditional' idl attribute. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _HTMLStyleElementWrappingImplementation extends _HTMLElementWrappingImplem entation implements HTMLStyleElement { 7 class _HTMLStyleElementWrappingImplementation extends _HTMLElementWrappingImplem entation implements HTMLStyleElement {
8 _HTMLStyleElementWrappingImplementation() : super() {} 8 _HTMLStyleElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLStyleElementWrappingImplementation() native { 10 static create__HTMLStyleElementWrappingImplementation() native {
11 return new _HTMLStyleElementWrappingImplementation(); 11 return new _HTMLStyleElementWrappingImplementation();
12 } 12 }
13 13
14 bool get disabled() { return _get_disabled(this); } 14 bool get disabled() { return _get_disabled(this); }
15 static bool _get_disabled(var _this) native; 15 static bool _get_disabled(var _this) native;
16 16
17 void set disabled(bool value) { _set_disabled(this, value); } 17 void set disabled(bool value) { _set_disabled(this, value); }
18 static void _set_disabled(var _this, bool value) native; 18 static void _set_disabled(var _this, bool value) native;
19 19
20 String get media() { return _get_media(this); } 20 String get media() { return _get_media(this); }
21 static String _get_media(var _this) native; 21 static String _get_media(var _this) native;
22 22
23 void set media(String value) { _set_media(this, value); } 23 void set media(String value) { _set_media(this, value); }
24 static void _set_media(var _this, String value) native; 24 static void _set_media(var _this, String value) native;
25 25
26 bool get scoped() { return _get_scoped(this); }
27 static bool _get_scoped(var _this) native;
28
29 void set scoped(bool value) { _set_scoped(this, value); }
30 static void _set_scoped(var _this, bool value) native;
31
32 StyleSheet get sheet() { return _get_sheet(this); } 26 StyleSheet get sheet() { return _get_sheet(this); }
33 static StyleSheet _get_sheet(var _this) native; 27 static StyleSheet _get_sheet(var _this) native;
34 28
35 String get type() { return _get_type(this); } 29 String get type() { return _get_type(this); }
36 static String _get_type(var _this) native; 30 static String _get_type(var _this) native;
37 31
38 void set type(String value) { _set_type(this, value); } 32 void set type(String value) { _set_type(this, value); }
39 static void _set_type(var _this, String value) native; 33 static void _set_type(var _this, String value) native;
40 34
41 String get typeName() { return "HTMLStyleElement"; } 35 String get typeName() { return "HTMLStyleElement"; }
42 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698