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

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

Issue 8895013: Add enables consistent with Chrome's WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Alpha the ENABLEs Created 9 years 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/_DOMWindowWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart b/client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart
index d4bc2adc238e8b0e5de3acf0c72cabd16b368d61..b37ba57952bc4f4c3309082d2cf1226f0a4e48c3 100644
--- a/client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart
@@ -257,9 +257,15 @@ class _DOMWindowWrappingImplementation extends DOMWrapperBase implements DOMWind
void set top(DOMWindow value) { _set_top(this, value); }
static void _set_top(var _this, DOMWindow value) native;
+ IDBFactory get webkitIndexedDB() { return _get_webkitIndexedDB(this); }
+ static IDBFactory _get_webkitIndexedDB(var _this) native;
+
NotificationCenter get webkitNotifications() { return _get_webkitNotifications(this); }
static NotificationCenter _get_webkitNotifications(var _this) native;
+ StorageInfo get webkitStorageInfo() { return _get_webkitStorageInfo(this); }
+ static StorageInfo _get_webkitStorageInfo(var _this) native;
+
DOMURL get webkitURL() { return _get_webkitURL(this); }
static DOMURL _get_webkitURL(var _this) native;
@@ -387,6 +393,16 @@ class _DOMWindowWrappingImplementation extends DOMWrapperBase implements DOMWind
static DOMWindow _open(receiver, url, name) native;
static DOMWindow _open_2(receiver, url, name, options) native;
+ Database openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback = null]) {
+ if (creationCallback === null) {
+ return _openDatabase(this, name, version, displayName, estimatedSize);
+ } else {
+ return _openDatabase_2(this, name, version, displayName, estimatedSize, creationCallback);
+ }
+ }
+ static Database _openDatabase(receiver, name, version, displayName, estimatedSize) native;
+ static Database _openDatabase_2(receiver, name, version, displayName, estimatedSize, creationCallback) native;
+
void postMessage(String message, var messagePorts_OR_targetOrigin, [String targetOrigin = null]) {
if (messagePorts_OR_targetOrigin is String) {
if (targetOrigin === null) {

Powered by Google App Engine
This is Rietveld 408576698