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

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

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:
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 6a094c69adb1d2509dc7e58219a108a31a3ffe2b..a32d06dd7fcf3797f84376dd48e779af0ebf6e16 100644
--- a/client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart
@@ -393,16 +393,6 @@ 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, String targetOrigin, [List messagePorts = null]) {
if (messagePorts === null) {
_postMessage(this, message, targetOrigin);

Powered by Google App Engine
This is Rietveld 408576698