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

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

Issue 10089002: Refreshing libs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 | « lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/frog/html_frog.dart
diff --git a/lib/html/frog/html_frog.dart b/lib/html/frog/html_frog.dart
index dc928b4eb80eff169efbeed5c250af0b6298aa9a..8ff269bccbc8cf5e0d6fdaaf2ce4bed2c43cd6ad 100644
--- a/lib/html/frog/html_frog.dart
+++ b/lib/html/frog/html_frog.dart
@@ -8807,6 +8807,10 @@ class _MouseEventImpl extends _UIEventImpl implements MouseEvent native "*MouseE
final _NodeImpl toElement;
+ final int webkitMovementX;
+
+ final int webkitMovementY;
+
final int x;
final int y;
@@ -8992,6 +8996,8 @@ class _NavigatorImpl implements Navigator native "*Navigator" {
final String vendorSub;
+ final _PointerLockImpl webkitPointer;
+
void getStorageUpdates() native;
bool javaEnabled() native;
@@ -9477,8 +9483,12 @@ class _NotificationImpl extends _EventTargetImpl implements Notification native
String dir;
+ String replaceId;
+
String tag;
+ void cancel() native;
+
void close() native;
void show() native;
@@ -9491,6 +9501,8 @@ class _NotificationEventsImpl extends _EventsImpl implements NotificationEvents
EventListenerList get close() => _get('close');
+ EventListenerList get display() => _get('display');
+
EventListenerList get error() => _get('error');
EventListenerList get show() => _get('show');
@@ -9874,6 +9886,15 @@ class _PointImpl implements Point native "*WebKitPoint" {
num y;
}
+class _PointerLockImpl implements PointerLock native "*PointerLock" {
+
+ final bool isLocked;
+
+ void lock(_ElementImpl target, [VoidCallback successCallback = null, VoidCallback failureCallback = null]) native;
+
+ void unlock() native;
+}
+
class _PopStateEventImpl extends _EventImpl implements PopStateEvent native "*PopStateEvent" {
final Object state;
@@ -13983,6 +14004,8 @@ class _StyleElementImpl extends _ElementImpl implements StyleElement native "*HT
String media;
+ bool scoped;
+
final _StyleSheetImpl sheet;
String type;
@@ -15984,6 +16007,35 @@ class _WebGLUniformLocationImpl implements WebGLUniformLocation native "*WebGLUn
class _WebGLVertexArrayObjectOESImpl implements WebGLVertexArrayObjectOES native "*WebGLVertexArrayObjectOES" {
}
+class _WebKitCSSFilterValueImpl extends _CSSValueListImpl implements WebKitCSSFilterValue native "*WebKitCSSFilterValue" {
+
+ static final int CSS_FILTER_BLUR = 10;
+
+ static final int CSS_FILTER_BRIGHTNESS = 8;
+
+ static final int CSS_FILTER_CONTRAST = 9;
+
+ static final int CSS_FILTER_CUSTOM = 12;
+
+ static final int CSS_FILTER_DROP_SHADOW = 11;
+
+ static final int CSS_FILTER_GRAYSCALE = 2;
+
+ static final int CSS_FILTER_HUE_ROTATE = 5;
+
+ static final int CSS_FILTER_INVERT = 6;
+
+ static final int CSS_FILTER_OPACITY = 7;
+
+ static final int CSS_FILTER_REFERENCE = 1;
+
+ static final int CSS_FILTER_SATURATE = 4;
+
+ static final int CSS_FILTER_SEPIA = 3;
+
+ final int operationType;
+}
+
class _WebKitCSSRegionRuleImpl extends _CSSRuleImpl implements WebKitCSSRegionRule native "*WebKitCSSRegionRule" {
final _CSSRuleListImpl cssRules;
@@ -25758,6 +25810,12 @@ interface MouseEvent extends UIEvent default _MouseEventFactoryProvider {
/** @domName MouseEvent.toElement */
final Node toElement;
+ /** @domName MouseEvent.webkitMovementX */
+ final int webkitMovementX;
+
+ /** @domName MouseEvent.webkitMovementY */
+ final int webkitMovementY;
+
/** @domName MouseEvent.x */
final int x;
@@ -25932,6 +25990,9 @@ interface Navigator {
/** @domName Navigator.vendorSub */
final String vendorSub;
+ /** @domName Navigator.webkitPointer */
+ final PointerLock webkitPointer;
+
/** @domName Navigator.getStorageUpdates */
void getStorageUpdates();
@@ -26237,9 +26298,15 @@ interface Notification extends EventTarget {
/** @domName Notification.dir */
String dir;
+ /** @domName Notification.replaceId */
+ String replaceId;
+
/** @domName Notification.tag */
String tag;
+ /** @domName Notification.cancel */
+ void cancel();
+
/** @domName Notification.close */
void close();
@@ -26253,6 +26320,8 @@ interface NotificationEvents extends Events {
EventListenerList get close();
+ EventListenerList get display();
+
EventListenerList get error();
EventListenerList get show();
@@ -26894,6 +26963,24 @@ interface Point default _PointFactoryProvider {
// WARNING: Do not edit - generated code.
+/// @domName PointerLock
+interface PointerLock {
+
+ /** @domName PointerLock.isLocked */
+ final bool isLocked;
+
+ /** @domName PointerLock.lock */
+ void lock(Element target, [VoidCallback successCallback, VoidCallback failureCallback]);
+
+ /** @domName PointerLock.unlock */
+ void unlock();
+}
+// 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.
+
/// @domName PopStateEvent
interface PopStateEvent extends Event {
@@ -31398,6 +31485,9 @@ interface StyleElement extends Element {
/** @domName HTMLStyleElement.media */
String media;
+ /** @domName HTMLStyleElement.scoped */
+ bool scoped;
+
/** @domName HTMLStyleElement.sheet */
final StyleSheet sheet;
@@ -33755,6 +33845,42 @@ interface WebGLVertexArrayObjectOES {
// WARNING: Do not edit - generated code.
+/// @domName WebKitCSSFilterValue
+interface WebKitCSSFilterValue extends CSSValueList {
+
+ static final int CSS_FILTER_BLUR = 10;
+
+ static final int CSS_FILTER_BRIGHTNESS = 8;
+
+ static final int CSS_FILTER_CONTRAST = 9;
+
+ static final int CSS_FILTER_CUSTOM = 12;
+
+ static final int CSS_FILTER_DROP_SHADOW = 11;
+
+ static final int CSS_FILTER_GRAYSCALE = 2;
+
+ static final int CSS_FILTER_HUE_ROTATE = 5;
+
+ static final int CSS_FILTER_INVERT = 6;
+
+ static final int CSS_FILTER_OPACITY = 7;
+
+ static final int CSS_FILTER_REFERENCE = 1;
+
+ static final int CSS_FILTER_SATURATE = 4;
+
+ static final int CSS_FILTER_SEPIA = 3;
+
+ /** @domName WebKitCSSFilterValue.operationType */
+ final int operationType;
+}
+// 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.
+
/// @domName WebKitCSSRegionRule
interface WebKitCSSRegionRule extends CSSRule {
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698