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

Unified Diff: client/html/frog/html_frog.dart

Issue 9608016: Regenerate the wrapperless DOM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/html/dartium/html_dartium.dart ('k') | client/html/generated/html/dartium/AudioContext.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/frog/html_frog.dart
diff --git a/client/html/frog/html_frog.dart b/client/html/frog/html_frog.dart
index 7a4f88e41174ec1ecf0d486ef18c081d107f09d3..bc59652949a1ba3e06436edc6bf1d0de9c374e4d 100644
--- a/client/html/frog/html_frog.dart
+++ b/client/html/frog/html_frog.dart
@@ -321,7 +321,7 @@ class _AudioContextImpl implements AudioContext native "*AudioContext" {
_ConvolverNodeImpl createConvolver() native;
- _DelayNodeImpl createDelayNode([num maxDelayTime = null]) native;
+ _DelayNodeImpl createDelayNode() native;
_DynamicsCompressorNodeImpl createDynamicsCompressor() native;
@@ -804,12 +804,6 @@ class _CSSPrimitiveValueImpl extends _CSSValueImpl implements CSSPrimitiveValue
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;
_CounterImpl getCounterValue() native;
@@ -4043,11 +4037,11 @@ class _ClipboardImpl implements Clipboard native "*Clipboard" {
final _DataTransferItemListImpl items;
- final List types;
+ final List<String> types;
void clearData([String type = null]) native;
- String getData(String type) native;
+ void getData(String type) native;
bool setData(String type, String data) native;
@@ -4460,10 +4454,6 @@ class _DOMTokenListImpl implements DOMTokenList native "*DOMTokenList" {
}
class _DOMURLImpl implements DOMURL native "*DOMURL" {
-
- String createObjectURL(var blob_OR_stream) native;
-
- void revokeObjectURL(String url) native;
}
class _DataTransferItemImpl implements DataTransferItem native "*DataTransferItem" {
@@ -4870,14 +4860,6 @@ class _DocumentTypeImpl extends _NodeImpl implements DocumentType native "*Docum
}
class _DynamicsCompressorNodeImpl extends _AudioNodeImpl implements DynamicsCompressorNode native "*DynamicsCompressorNode" {
-
- final _AudioParamImpl knee;
-
- final _AudioParamImpl ratio;
-
- final _AudioParamImpl reduction;
-
- final _AudioParamImpl 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
@@ -6789,7 +6771,7 @@ class _IDBIndexImpl implements IDBIndex native "*IDBIndex" {
final bool unique;
- _IDBRequestImpl count([var key_OR_range = null]) native;
+ _IDBRequestImpl count([_IDBKeyRangeImpl range = null]) native;
_IDBRequestImpl getObject(_IDBKeyImpl key) native;
@@ -6836,7 +6818,7 @@ class _IDBObjectStoreImpl implements IDBObjectStore native "*IDBObjectStore" {
_IDBRequestImpl clear() native;
- _IDBRequestImpl count([var key_OR_range = null]) native;
+ _IDBRequestImpl count([_IDBKeyRangeImpl range = null]) native;
_IDBIndexImpl createIndex(String name, String keyPath) native;
@@ -7636,6 +7618,12 @@ class _MediaControllerImpl implements MediaController native "*MediaController"
class _MediaElementImpl extends _ElementImpl implements MediaElement native "*HTMLMediaElement" {
+ static final int EOS_DECODE_ERR = 2;
+
+ static final int EOS_NETWORK_ERR = 1;
+
+ static final int EOS_NO_ERROR = 0;
+
static final int HAVE_CURRENT_DATA = 2;
static final int HAVE_ENOUGH_DATA = 4;
@@ -7654,6 +7642,12 @@ class _MediaElementImpl extends _ElementImpl implements MediaElement native "*HT
static final int NETWORK_NO_SOURCE = 3;
+ static final int SOURCE_CLOSED = 0;
+
+ static final int SOURCE_ENDED = 2;
+
+ static final int SOURCE_OPEN = 1;
+
bool autoplay;
final _TimeRangesImpl buffered;
@@ -7986,8 +7980,6 @@ class _MetaElementImpl extends _ElementImpl implements MetaElement native "*HTML
class _MetadataImpl implements Metadata native "*Metadata" {
final Date modificationTime;
-
- final int size;
}
class _MeterElementImpl extends _ElementImpl implements MeterElement native "*HTMLMeterElement" {
@@ -12686,8 +12678,6 @@ class _ShadowRootImpl extends _DocumentFragmentImpl implements ShadowRoot native
final _ElementImpl host;
- String innerHTML;
-
_ElementImpl getElementById(String elementId) native;
_NodeListImpl getElementsByClassName(String className) native;
@@ -13147,13 +13137,15 @@ class _TextTrackImpl implements TextTrack native "*TextTrack" {
class _TextTrackCueImpl implements TextTrackCue native "*TextTrackCue" {
- String align;
+ String alignment;
+
+ String direction;
num endTime;
String id;
- int line;
+ int linePosition;
EventListener onenter;
@@ -13161,8 +13153,6 @@ class _TextTrackCueImpl implements TextTrackCue native "*TextTrackCue" {
bool pauseOnExit;
- int position;
-
int size;
bool snapToLines;
@@ -13171,9 +13161,9 @@ class _TextTrackCueImpl implements TextTrackCue native "*TextTrackCue" {
String text;
- final _TextTrackImpl track;
+ int textPosition;
- String vertical;
+ final _TextTrackImpl track;
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
@@ -13350,6 +13340,8 @@ class _TouchListImpl implements TouchList native "*TouchList" {
class _TrackElementImpl extends _ElementImpl implements TrackElement native "*HTMLTrackElement" {
+ static final int ERROR = 3;
+
static final int LOADED = 2;
static final int LOADING = 1;
@@ -14746,8 +14738,6 @@ class _WebKitCSSRegionRuleImpl extends _CSSRuleImpl implements WebKitCSSRegionRu
class _WebKitNamedFlowImpl implements WebKitNamedFlow native "*WebKitNamedFlow" {
final bool overflow;
-
- _NodeListImpl getRegionsByContentNode(_NodeImpl contentNode) native;
}
class _WebSocketImpl extends _EventTargetImpl implements WebSocket native "*WebSocket" {
@@ -16057,7 +16047,7 @@ interface AudioContext {
ConvolverNode createConvolver();
- DelayNode createDelayNode([num maxDelayTime]);
+ DelayNode createDelayNode();
DynamicsCompressorNode createDynamicsCompressor();
@@ -16694,12 +16684,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();
@@ -19020,11 +19004,11 @@ interface Clipboard {
final DataTransferItemList items;
- final List types;
+ final List<String> types;
void clearData([String type]);
- String getData(String type);
+ void getData(String type);
bool setData(String type, String data);
@@ -19556,10 +19540,6 @@ interface DOMTokenList {
interface DOMURL default _DOMURLFactoryProvider {
DOMURL();
-
- String createObjectURL(var blob_OR_stream);
-
- void revokeObjectURL(String url);
}
// 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
@@ -20030,14 +20010,6 @@ interface DocumentType extends Node {
// WARNING: Do not edit - generated code.
interface DynamicsCompressorNode extends AudioNode {
-
- final AudioParam knee;
-
- final AudioParam ratio;
-
- final AudioParam reduction;
-
- final AudioParam threshold;
}
// 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
@@ -21729,7 +21701,7 @@ interface IDBIndex {
final bool unique;
- IDBRequest count([var key_OR_range]);
+ IDBRequest count([IDBKeyRange range]);
IDBRequest getObject(IDBKey key);
@@ -21791,7 +21763,7 @@ interface IDBObjectStore {
IDBRequest clear();
- IDBRequest count([var key_OR_range]);
+ IDBRequest count([IDBKeyRange range]);
IDBIndex createIndex(String name, String keyPath);
@@ -22500,6 +22472,12 @@ interface MediaController default _MediaControllerFactoryProvider {
interface MediaElement extends Element {
+ static final int EOS_DECODE_ERR = 2;
+
+ static final int EOS_NETWORK_ERR = 1;
+
+ static final int EOS_NO_ERROR = 0;
+
static final int HAVE_CURRENT_DATA = 2;
static final int HAVE_ENOUGH_DATA = 4;
@@ -22518,6 +22496,12 @@ interface MediaElement extends Element {
static final int NETWORK_NO_SOURCE = 3;
+ static final int SOURCE_CLOSED = 0;
+
+ static final int SOURCE_ENDED = 2;
+
+ static final int SOURCE_OPEN = 1;
+
bool autoplay;
final TimeRanges buffered;
@@ -22864,8 +22848,6 @@ interface MetaElement extends Element {
interface Metadata {
final Date modificationTime;
-
- final int size;
}
// 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
@@ -26941,8 +26923,6 @@ interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider
final Element host;
- String innerHTML;
-
Element getElementById(String elementId);
NodeList getElementsByClassName(String className);
@@ -27500,13 +27480,15 @@ interface TextTrackCue default _TextTrackCueFactoryProvider {
TextTrackCue(String id, num startTime, num endTime, String text, [String settings, bool pauseOnExit]);
- String align;
+ String alignment;
+
+ String direction;
num endTime;
String id;
- int line;
+ int linePosition;
EventListener onenter;
@@ -27514,8 +27496,6 @@ interface TextTrackCue default _TextTrackCueFactoryProvider {
bool pauseOnExit;
- int position;
-
int size;
bool snapToLines;
@@ -27524,9 +27504,9 @@ interface TextTrackCue default _TextTrackCueFactoryProvider {
String text;
- final TextTrack track;
+ int textPosition;
- String vertical;
+ final TextTrack track;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -27668,6 +27648,8 @@ interface TouchList extends List<Touch> {
interface TrackElement extends Element {
+ static final int ERROR = 3;
+
static final int LOADED = 2;
static final int LOADING = 1;
@@ -29004,8 +28986,6 @@ interface WebKitCSSRegionRule extends CSSRule {
interface WebKitNamedFlow {
final bool overflow;
-
- NodeList getRegionsByContentNode(Node contentNode);
}
// 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
« no previous file with comments | « client/html/dartium/html_dartium.dart ('k') | client/html/generated/html/dartium/AudioContext.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698