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

Unified Diff: example/explainer/build_examples.dart

Issue 11305009: Fix dwc extension with latest js-interop, small fix to dwc, and updates to (Closed) Base URL: git@github.com:dart-lang/dart-web-components.git@master
Patch Set: 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: example/explainer/build_examples.dart
diff --git a/example/explainer/build_examples.dart b/example/explainer/build_examples.dart
index 915b31251778cf893a6c141249b52307ceb46a69..ac1326373020633858d1924533afcffb538d846a 100755
--- a/example/explainer/build_examples.dart
+++ b/example/explainer/build_examples.dart
@@ -84,7 +84,7 @@ Stopwatch startTime() => new Stopwatch()..start();
void stopTime(Stopwatch watch, String message) {
watch.stop();
- var duration = watch.elapsedInMs();
+ var duration = watch.elapsedMilliseconds;
print('$message: $GREEN_COLOR$duration ms$NO_COLOR');
totalTime.add('$message: $GREEN_COLOR$duration ms$NO_COLOR');
}
« no previous file with comments | « bin/dwc_browser.dart ('k') | extension/background.html » ('j') | extension/background.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698