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

Unified Diff: lib/dom/frog/dom_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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/frog/dom_frog.dart
diff --git a/lib/dom/frog/dom_frog.dart b/lib/dom/frog/dom_frog.dart
index 09a77bae4f04cc922c494efedc7448eaa082660b..66496e0f28faf115ef28a4d92597ea4772259d6d 100644
--- a/lib/dom/frog/dom_frog.dart
+++ b/lib/dom/frog/dom_frog.dart
@@ -3770,6 +3770,8 @@ class _HTMLStyleElementJs extends _HTMLElementJs implements HTMLStyleElement nat
String media;
+ bool scoped;
+
final _StyleSheetJs sheet;
String type;
@@ -5013,6 +5015,10 @@ class _MouseEventJs extends _UIEventJs implements MouseEvent native "*MouseEvent
final _NodeJs toElement;
+ final int webkitMovementX;
+
+ final int webkitMovementY;
+
final int x;
final int y;
@@ -5198,6 +5204,8 @@ class _NavigatorJs extends _DOMTypeJs implements Navigator native "*Navigator" {
final String vendorSub;
+ final _PointerLockJs webkitPointer;
+
void getStorageUpdates() native;
bool javaEnabled() native;
@@ -5490,10 +5498,14 @@ class _NotificationJs extends _EventTargetJs implements Notification native "*No
String dir;
+ String replaceId;
+
String tag;
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
+ void cancel() native;
+
void close() native;
bool dispatchEvent(_EventJs evt) native;
@@ -5730,6 +5742,15 @@ class _PerformanceTimingJs extends _DOMTypeJs implements PerformanceTiming nativ
final int unloadEventStart;
}
+class _PointerLockJs extends _DOMTypeJs implements PointerLock native "*PointerLock" {
+
+ final bool isLocked;
+
+ void lock(_ElementJs target, [VoidCallback successCallback = null, VoidCallback failureCallback = null]) native;
+
+ void unlock() native;
+}
+
class _PopStateEventJs extends _EventJs implements PopStateEvent native "*PopStateEvent" {
final Object state;
@@ -11274,6 +11295,35 @@ class _WebKitBlobBuilderJs extends _DOMTypeJs implements WebKitBlobBuilder nativ
_BlobJs getBlob([String contentType = null]) native;
}
+class _WebKitCSSFilterValueJs extends _CSSValueListJs 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 _WebKitCSSKeyframeRuleJs extends _CSSRuleJs implements WebKitCSSKeyframeRule native "*WebKitCSSKeyframeRule" {
String keyText;
@@ -16431,6 +16481,8 @@ interface HTMLStyleElement extends HTMLElement {
String media;
+ bool scoped;
+
final StyleSheet sheet;
String type;
@@ -17639,6 +17691,10 @@ interface MouseEvent extends UIEvent {
final Node toElement;
+ final int webkitMovementX;
+
+ final int webkitMovementY;
+
final int x;
final int y;
@@ -17767,6 +17823,8 @@ interface Navigator {
final String vendorSub;
+ final PointerLock webkitPointer;
+
void getStorageUpdates();
bool javaEnabled();
@@ -18031,10 +18089,14 @@ interface Notification extends EventTarget {
String dir;
+ String replaceId;
+
String tag;
void addEventListener(String type, EventListener listener, [bool useCapture]);
+ void cancel();
+
void close();
bool dispatchEvent(Event evt);
@@ -18343,6 +18405,20 @@ interface PerformanceTiming {
// WARNING: Do not edit - generated code.
+interface PointerLock {
+
+ final bool isLocked;
+
+ void lock(Element target, [VoidCallback successCallback, VoidCallback failureCallback]);
+
+ 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.
+
interface PopStateEvent extends Event {
final Object state;
@@ -23275,6 +23351,40 @@ interface WebKitBlobBuilder default _WebKitBlobBuilderFactoryProvider {
// WARNING: Do not edit - generated code.
+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;
+
+ 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.
+
interface WebKitCSSKeyframeRule extends CSSRule {
String keyText;
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698