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

Unified Diff: client/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 9689026: Regenerate DOM bindings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review change Created 8 years, 9 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:
Download patch
« no previous file with comments | « client/dom/scripts/systemhtml.py ('k') | client/html/frog/html_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/dartium/html_dartium.dart
diff --git a/client/html/dartium/html_dartium.dart b/client/html/dartium/html_dartium.dart
index 61082dd47d042a7f617fb846e63d061803cc54ca..8cd9ce7b8058465ba8d660e68ffc412eb9d24fb7 100644
--- a/client/html/dartium/html_dartium.dart
+++ b/client/html/dartium/html_dartium.dart
@@ -188,6 +188,7 @@ _wrap(raw) {
case "DocumentFragment": return new _DocumentFragmentImpl._wrap(domObject);
case "DocumentType": return new _DocumentTypeImpl._wrap(domObject);
case "DynamicsCompressorNode": return new _DynamicsCompressorNodeImpl._wrap(domObject);
+ case "EXTTextureFilterAnisotropic": return new _EXTTextureFilterAnisotropicImpl._wrap(domObject);
case "ElementTimeControl": return new _ElementTimeControlImpl._wrap(domObject);
case "HTMLEmbedElement": return new _EmbedElementImpl._wrap(domObject);
case "Entity": return new _EntityImpl._wrap(domObject);
@@ -7323,6 +7324,10 @@ class _DynamicsCompressorNodeImpl extends _AudioNodeImpl implements DynamicsComp
AudioParam get threshold() => _wrap(_ptr.threshold);
}
+
+class _EXTTextureFilterAnisotropicImpl extends _DOMTypeBase implements EXTTextureFilterAnisotropic {
+ _EXTTextureFilterAnisotropicImpl._wrap(ptr) : super._wrap(ptr);
+}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@@ -8689,6 +8694,12 @@ class _FieldSetElementImpl extends _ElementImpl implements FieldSetElement {
FormElement get form() => _wrap(_ptr.form);
+ String get name() => _wrap(_ptr.name);
+
+ void set name(String value) { _ptr.name = _unwrap(value); }
+
+ String get type() => _wrap(_ptr.type);
+
String get validationMessage() => _wrap(_ptr.validationMessage);
ValidityState get validity() => _wrap(_ptr.validity);
@@ -17477,6 +17488,8 @@ class _SelectElementImpl extends _ElementImpl implements SelectElement {
void set selectedIndex(int value) { _ptr.selectedIndex = _unwrap(value); }
+ HTMLCollection get selectedOptions() => _wrap(_ptr.selectedOptions);
+
int get size() => _wrap(_ptr.size);
void set size(int value) { _ptr.size = _unwrap(value); }
@@ -17523,6 +17536,8 @@ class _ShadowElementImpl extends _ElementImpl implements ShadowElement {
class _ShadowRootImpl extends _DocumentFragmentImpl implements ShadowRoot {
_ShadowRootImpl._wrap(ptr) : super._wrap(ptr);
+ Element get activeElement() => _wrap(_ptr.activeElement);
+
Element get host() => _wrap(_ptr.host);
String get innerHTML() => _wrap(_ptr.innerHTML);
@@ -18605,10 +18620,6 @@ class _TouchListImpl extends _DOMTypeBase implements TouchList {
class _TrackElementImpl extends _ElementImpl implements TrackElement {
_TrackElementImpl._wrap(ptr) : super._wrap(ptr);
- bool get isDefault() => _wrap(_ptr.isDefault);
-
- void set isDefault(bool value) { _ptr.isDefault = _unwrap(value); }
-
String get kind() => _wrap(_ptr.kind);
void set kind(String value) { _ptr.kind = _unwrap(value); }
@@ -22424,12 +22435,6 @@ interface CSSPrimitiveValue extends CSSValue {
static final int CSS_URI = 20;
- static final int CSS_VH = 27;
-
- static final int CSS_VMIN = 28;
-
- static final int CSS_VW = 26;
-
final int primitiveType;
Counter getCounterValue();
@@ -25766,6 +25771,18 @@ interface DynamicsCompressorNode extends AudioNode {
final AudioParam threshold;
}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
+interface EXTTextureFilterAnisotropic {
+
+ static final int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF;
+
+ static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE;
+}
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@@ -26600,6 +26617,10 @@ interface FieldSetElement extends Element {
final FormElement form;
+ String name;
+
+ final String type;
+
final String validationMessage;
final ValidityState validity;
@@ -32543,6 +32564,8 @@ interface SelectElement extends Element {
int selectedIndex;
+ final HTMLCollection selectedOptions;
+
int size;
final String type;
@@ -32583,6 +32606,8 @@ interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider
ShadowRoot(Element host);
+ final Element activeElement;
+
final Element host;
String innerHTML;
@@ -33320,8 +33345,6 @@ interface TrackElement extends Element {
static final int NONE = 0;
- bool isDefault;
-
String kind;
String label;
« no previous file with comments | « client/dom/scripts/systemhtml.py ('k') | client/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698