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

Unified Diff: client/dom/generated/wrapping_dom.js

Side-by-side diff isn't available for this file because of its large size.
Issue 9242002: Webkit refresh. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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:
Download patch
Index: client/dom/generated/wrapping_dom.js
diff --git a/client/dom/generated/wrapping_dom.js b/client/dom/generated/wrapping_dom.js
index fd1c30774920169fd98bbe1e64977b61b89d791b..adcb42890ac84d6025632ba3b8f4eb47dbe6c9b6 100644
--- a/client/dom/generated/wrapping_dom.js
+++ b/client/dom/generated/wrapping_dom.js
@@ -4486,22 +4486,6 @@ function native__DOMWindowWrappingImplementation__open_2(_this, url, name, optio
}
}
-function native__DOMWindowWrappingImplementation__openDatabase(_this, name, version, displayName, estimatedSize) {
- try {
- return __dom_wrap(_this.$dom.openDatabase(__dom_unwrap(name), __dom_unwrap(version), __dom_unwrap(displayName), __dom_unwrap(estimatedSize)));
- } catch (e) {
- throw __dom_wrap_exception(e);
- }
-}
-
-function native__DOMWindowWrappingImplementation__openDatabase_2(_this, name, version, displayName, estimatedSize, creationCallback) {
- try {
- return __dom_wrap(_this.$dom.openDatabase(__dom_unwrap(name), __dom_unwrap(version), __dom_unwrap(displayName), __dom_unwrap(estimatedSize), __dom_unwrap(creationCallback)));
- } catch (e) {
- throw __dom_wrap_exception(e);
- }
-}
-
function native__DOMWindowWrappingImplementation__postMessage(_this, message, targetOrigin) {
try {
return __dom_wrap(_this.$dom.postMessage(__dom_unwrap(message), __dom_unwrap(targetOrigin)));
@@ -19710,9 +19694,9 @@ function native__PerformanceTimingWrappingImplementation__get_unloadEventStart(_
}
}
-function native__PointerLockWrappingImplementation__isLocked(_this) {
+function native__PointerLockWrappingImplementation__get_isLocked(_this) {
try {
- return __dom_wrap(_this.$dom.isLocked());
+ return __dom_wrap(_this.$dom.isLocked);
} catch (e) {
throw __dom_wrap_exception(e);
}
@@ -30886,6 +30870,22 @@ function native__TextTrackCueWrappingImplementation__set_startTime(_this, value)
}
}
+function native__TextTrackCueWrappingImplementation__get_text(_this) {
+ try {
+ return __dom_wrap(_this.$dom.text);
+ } catch (e) {
+ throw __dom_wrap_exception(e);
+ }
+}
+
+function native__TextTrackCueWrappingImplementation__set_text(_this, value) {
+ try {
+ _this.$dom.text = __dom_unwrap(value);
+ } catch (e) {
+ throw __dom_wrap_exception(e);
+ }
+}
+
function native__TextTrackCueWrappingImplementation__get_textPosition(_this) {
try {
return __dom_wrap(_this.$dom.textPosition);
@@ -30942,14 +30942,6 @@ function native__TextTrackCueWrappingImplementation__getCueAsHTML(_this) {
}
}
-function native__TextTrackCueWrappingImplementation__getCueAsSource(_this) {
- try {
- return __dom_wrap(_this.$dom.getCueAsSource());
- } catch (e) {
- throw __dom_wrap_exception(e);
- }
-}
-
function native__TextTrackCueWrappingImplementation__removeEventListener(_this, type, listener) {
try {
return __dom_wrap(_this.$dom.removeEventListener(__dom_unwrap(type), __dom_unwrap(listener)));

Powered by Google App Engine
This is Rietveld 408576698