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

Unified Diff: samples/third_party/todomvc_performance/web/performance.dart

Issue 1576153002: Remove the Dromaeo and TodoMVC samples. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
Index: samples/third_party/todomvc_performance/web/performance.dart
diff --git a/samples/third_party/todomvc_performance/web/performance.dart b/samples/third_party/todomvc_performance/web/performance.dart
deleted file mode 100644
index 93ce1dc4f367ac74cdbf35e406d1a3482a6e92f1..0000000000000000000000000000000000000000
--- a/samples/third_party/todomvc_performance/web/performance.dart
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (c) 2014, 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.
-
-library todomvc_performance;
-
-import 'dart:async';
-import 'dart:html';
-import 'dart:js' as js;
-import 'package:polymer/polymer.dart';
-import 'package:web_components/polyfill.dart';
-import 'elements/td_model.dart';
-
-/**
- * This test determines how fast the TodoMVC app has loaded.
- */
-main() {
- initPolymer();
- Polymer.onReady.then((_) {
- var endInitTime = new DateTime.now();
- window.postMessage(endInitTime.millisecondsSinceEpoch, '*');
- });
-}

Powered by Google App Engine
This is Rietveld 408576698