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

Side by Side Diff: samples/third_party/todomvc_performance/web/performance.dart

Issue 204733004: Added TodoMVC startup benchmarks. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 library todomvc_performance;
6
7 import 'dart:async';
8 import 'dart:html';
9 import 'dart:js' as js;
10 import 'package:polymer/polymer.dart';
11 import 'package:web_components/polyfill.dart';
12 import 'elements/td_model.dart';
13
14 /**
15 * This test determines how fast the TodoMVC app has loaded.
16 */
17 main() {
18 initPolymer();
19 Polymer.onReady.then((_) {
20 var endInitTime = new DateTime.now();
21 window.postMessage(endInitTime.millisecondsSinceEpoch, '*');
22 });
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698