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

Unified Diff: third_party/pkg/angular/lib/core_dom/module.dart

Issue 176943008: Update the Angular/DI tests to latest from github. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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: third_party/pkg/angular/lib/core_dom/module.dart
diff --git a/third_party/pkg/angular/lib/core_dom/module.dart b/third_party/pkg/angular/lib/core_dom/module.dart
index b8a0af936d91773eeb8a6e2980ff9b5208ae1d43..d193675d3c7ed454fa5be56c995ed17cd3e4e04b 100644
--- a/third_party/pkg/angular/lib/core_dom/module.dart
+++ b/third_party/pkg/angular/lib/core_dom/module.dart
@@ -3,13 +3,13 @@ library angular.core.dom;
import 'dart:async' as async;
import 'dart:convert' show JSON;
import 'dart:html' as dom;
+import 'dart:mirrors';
import 'package:di/di.dart';
import 'package:perf_api/perf_api.dart';
import 'package:angular/core/module.dart';
import 'package:angular/core/parser/parser.dart';
-import 'package:angular/utils.dart';
part 'block.dart';
part 'block_factory.dart';
@@ -17,6 +17,7 @@ part 'cookies.dart';
part 'common.dart';
part 'compiler.dart';
part 'directive.dart';
+part 'directive_map.dart';
part 'http.dart';
part 'ng_mustache.dart';
part 'node_cursor.dart';
@@ -28,7 +29,6 @@ class NgCoreDomModule extends Module {
NgCoreDomModule() {
value(dom.Window, dom.window);
- value(TextChangeListener, null);
factory(TemplateCache, (_) => new TemplateCache(capacity: 0));
type(dom.NodeTreeSanitizer, implementedBy: NullTreeSanitizer);
@@ -46,6 +46,8 @@ class NgCoreDomModule extends Module {
type(BrowserCookies);
type(Cookies);
type(LocationWrapper);
+ type(FieldMetadataExtractor);
+ type(DirectiveMap);
}
}

Powered by Google App Engine
This is Rietveld 408576698