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

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

Issue 10269024: Add stubs to frog to keep dartc happy (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use right exception type Created 8 years, 8 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 | lib/dom/templates/dom/frog/frog_dom.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/frog/dom_frog.dart
diff --git a/lib/dom/frog/dom_frog.dart b/lib/dom/frog/dom_frog.dart
index a7727ebbbeeaf72038446aa07cd7e14ce82c4e7c..2162c64dc21247a2a8e16b6c63f551d2033674b6 100644
--- a/lib/dom/frog/dom_frog.dart
+++ b/lib/dom/frog/dom_frog.dart
@@ -16,6 +16,14 @@ DOMWindow get window() native "return window;";
HTMLDocument get document() native "return document;";
+// TODO(vsm): Implement these.
+interface LayoutTestController {}
+LayoutTestController layoutTestController;
+
+spawnDomIsolate(Window targetWindow, String entryPoint) {
+ throw const NotImplementedException();
+}
+
class _AbstractWorkerJs extends _EventTargetJs implements AbstractWorker native "*AbstractWorker" {
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
« no previous file with comments | « no previous file | lib/dom/templates/dom/frog/frog_dom.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698