| Index: lib/html/templates/html/dartium/impl_Window.darttemplate
|
| diff --git a/lib/html/templates/html/dartium/impl_Window.darttemplate b/lib/html/templates/html/dartium/impl_Window.darttemplate
|
| deleted file mode 100644
|
| index ac6f2d15d45450a26acdfe3683a7629910f49c9c..0000000000000000000000000000000000000000
|
| --- a/lib/html/templates/html/dartium/impl_Window.darttemplate
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| -
|
| - void requestLayoutFrame(TimeoutHandler callback) {
|
| - _addMeasurementFrameCallback(callback);
|
| - }
|
| -
|
| - // TODO(kasperl): Document these.
|
| - lookupPort(String name) {
|
| - var port = JSON.parse(localStorage['dart-port:$name']);
|
| - return _deserialize(port);
|
| - }
|
| -
|
| - registerPort(String name, var port) {
|
| - var serialized = _serialize(port);
|
| - localStorage['dart-port:$name'] = JSON.stringify(serialized);
|
| - }
|
| -
|
| - String createObjectUrl(object) => DOMURL.createObjectURL(object);
|
| - void revokeObjectUrl(String url) {
|
| - DOMURL.revokeObjectURL(url);
|
| - }
|
| -
|
| -$!MEMBERS
|
| -}
|
|
|