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

Unified Diff: client/dom/frog/dom_frog.dart

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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | client/dom/generated/src/frog/DOMWindow.dart » ('j') | client/dom/scripts/databasebuilder.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/frog/dom_frog.dart
diff --git a/client/dom/frog/dom_frog.dart b/client/dom/frog/dom_frog.dart
index 60efd9a866fc626b3f815de9216a322f4c392123..0efe8619eb67d2a68123b4d2373d17dbd9ca6b7d 100644
--- a/client/dom/frog/dom_frog.dart
+++ b/client/dom/frog/dom_frog.dart
@@ -1493,6 +1493,8 @@ class DOMWindowJs extends DOMTypeJs implements DOMWindow native "@*DOMWindow" {
DOMWindowJs open(String url, String name, [String options = null]) native;
+ DatabaseJs openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback = null]) native;
+
void postMessage(String message, String targetOrigin, [List messagePorts = null]) native;
void print() native;
@@ -14731,6 +14733,8 @@ interface Window extends EventTarget {
DOMWindow open(String url, String name, [String options]);
+ Database openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback]);
+
void postMessage(String message, String targetOrigin, [List messagePorts]);
void print();
« no previous file with comments | « no previous file | client/dom/generated/src/frog/DOMWindow.dart » ('j') | client/dom/scripts/databasebuilder.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698