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

Unified Diff: client/dom/generated/src/wrapping/_DeviceOrientationEventWrappingImplementation.dart

Issue 9264057: Refresh dart:dom libraries from WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: CR changes Created 8 years, 11 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
Index: client/dom/generated/src/wrapping/_DeviceOrientationEventWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_DeviceOrientationEventWrappingImplementation.dart b/client/dom/generated/src/wrapping/_DeviceOrientationEventWrappingImplementation.dart
index 95e5afda2e6a232bd08ae9c0529499678728cc75..4413ba0a696f2832e5932fb20c3e8594d96b22e2 100644
--- a/client/dom/generated/src/wrapping/_DeviceOrientationEventWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_DeviceOrientationEventWrappingImplementation.dart
@@ -11,6 +11,9 @@ class _DeviceOrientationEventWrappingImplementation extends _EventWrappingImplem
return new _DeviceOrientationEventWrappingImplementation();
}
+ bool get absolute() { return _get_absolute(this); }
+ static bool _get_absolute(var _this) native;
+
num get alpha() { return _get_alpha(this); }
static num _get_alpha(var _this) native;
@@ -20,11 +23,11 @@ class _DeviceOrientationEventWrappingImplementation extends _EventWrappingImplem
num get gamma() { return _get_gamma(this); }
static num _get_gamma(var _this) native;
- void initDeviceOrientationEvent(String type, bool bubbles, bool cancelable, num alpha, num beta, num gamma) {
- _initDeviceOrientationEvent(this, type, bubbles, cancelable, alpha, beta, gamma);
+ void initDeviceOrientationEvent(String type, bool bubbles, bool cancelable, num alpha, num beta, num gamma, bool absolute) {
+ _initDeviceOrientationEvent(this, type, bubbles, cancelable, alpha, beta, gamma, absolute);
return;
}
- static void _initDeviceOrientationEvent(receiver, type, bubbles, cancelable, alpha, beta, gamma) native;
+ static void _initDeviceOrientationEvent(receiver, type, bubbles, cancelable, alpha, beta, gamma, absolute) native;
String get typeName() { return "DeviceOrientationEvent"; }
}

Powered by Google App Engine
This is Rietveld 408576698