Chromium Code Reviews| Index: tools/dom/src/dart2js_DOMImplementation.dart |
| diff --git a/tools/dom/src/dart2js_DOMImplementation.dart b/tools/dom/src/dart2js_DOMImplementation.dart |
| index 051df51c2451dac4b19e247983439a058fb691ae..78a54b3fca6b048f0a38fc16e68555fc342fa307 100644 |
| --- a/tools/dom/src/dart2js_DOMImplementation.dart |
| +++ b/tools/dom/src/dart2js_DOMImplementation.dart |
| @@ -49,6 +49,17 @@ class _DOMWindowCrossFrame implements WindowBase { |
| return new _DOMWindowCrossFrame(w); |
| } |
| } |
| + |
| + // TODO(efortuna): Remove this method. dartbug.com/16814 |
|
Emily Fortuna
2014/02/13 22:12:06
these lines are the one thing that's different fro
|
| + Events get on => throw new UnimplementedError(); |
| + // TODO(efortuna): Remove this method. dartbug.com/16814 |
| + void addEventListener(String type, EventListener listener, [bool useCapture]) |
| + => throw new UnimplementedError(); |
| + // TODO(efortuna): Remove this method. dartbug.com/16814 |
| + bool dispatchEvent(Event event) => throw new UnimplementedError(); |
| + // TODO(efortuna): Remove this method. dartbug.com/16814 |
| + void removeEventListener(String type, EventListener listener, |
| + [bool useCapture]) => throw new UnimplementedError(); |
| } |
| class _LocationCrossFrame implements LocationBase { |