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

Side by Side Diff: third_party/pkg/angular/lib/perf/module.dart

Issue 257423008: Update all Angular libs (run update_all.sh). (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
1 /**
2 *
3 * Classes and utilities for analyzing performance in AngularDart.
4 *
5 * This is an optional library. You must import it in addition to the [angular.da rt]
6 * (#angular/angular) library,
7 * like so:
8 *
9 * import 'package:angular/angular.dart';
10 * import 'package:angular/perf/module.dart';
11 *
12 *
13 */
1 library angular.perf; 14 library angular.perf;
2 15
3 import 'dart:html' as dom; 16 import 'dart:html' as dom;
4 17
5 import 'package:di/di.dart'; 18 import 'package:di/di.dart';
6 import 'package:perf_api/perf_api.dart'; 19 import 'package:perf_api/perf_api.dart';
7 20
8 part 'dev_tools_timeline.dart'; 21 part 'dev_tools_timeline.dart';
9 22
10 class NgPerfModule extends Module { 23 class PerfModule extends Module {
11 NgPerfModule() { 24 PerfModule() {
12 type(Profiler, implementedBy: Profiler); 25 type(Profiler, implementedBy: Profiler);
13 } 26 }
14 } 27 }
OLDNEW
« no previous file with comments | « third_party/pkg/angular/lib/perf/dev_tools_timeline.dart ('k') | third_party/pkg/angular/lib/playback/playback_http.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698