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

Unified Diff: lib/html/templates/html/dartium/impl_Window.darttemplate

Issue 11047021: New cross frame base types (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Regen dart:html Created 8 years, 2 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: 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
-}

Powered by Google App Engine
This is Rietveld 408576698