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

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

Issue 9303011: Implement WebKit IDL 'module' feature [Supplemental=Foo] (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: manual fix 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 a2e31c6eb9c3fb9d2ae3d4527d10ac37e3b33b95..33f5271e88124266e949eef05f4aeb2442196650 100644
--- a/client/dom/generated/wrapping_dom.js
+++ b/client/dom/generated/wrapping_dom.js
@@ -4486,6 +4486,22 @@ 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)));

Powered by Google App Engine
This is Rietveld 408576698