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

Unified Diff: third_party/pkg/angular/lib/core_dom/module_internal.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 side-by-side diff with in-line comments
Download patch
Index: third_party/pkg/angular/lib/core_dom/module_internal.dart
diff --git a/third_party/pkg/angular/lib/core_dom/module_internal.dart b/third_party/pkg/angular/lib/core_dom/module_internal.dart
new file mode 100644
index 0000000000000000000000000000000000000000..810f2f6a7344843ff5b6b9177a456518a69fb06e
--- /dev/null
+++ b/third_party/pkg/angular/lib/core_dom/module_internal.dart
@@ -0,0 +1,82 @@
+library angular.core.dom_internal;
+
+import 'dart:async' as async;
+import 'dart:convert' show JSON;
+import 'dart:html' as dom;
+
+import 'package:di/di.dart';
+import 'package:perf_api/perf_api.dart';
+
+import 'package:angular/core/annotation.dart';
+import 'package:angular/core/annotation_src.dart' show SHADOW_DOM_INJECTOR_NAME;
+import 'package:angular/core/module_internal.dart';
+import 'package:angular/core/parser/parser.dart';
+import 'package:angular/core_dom/dom_util.dart' as util;
+
+import 'package:angular/change_detection/watch_group.dart' show Watch, PrototypeMap;
+import 'package:angular/core/registry.dart';
+
+import 'package:angular/directive/module.dart' show NgBaseCss;
+
+part 'animation.dart';
+part 'view.dart';
+part 'view_factory.dart';
+part 'cookies.dart';
+part 'common.dart';
+part 'compiler.dart';
+part 'directive.dart';
+part 'directive_map.dart';
+part 'element_binder.dart';
+part 'element_binder_builder.dart';
+part 'event_handler.dart';
+part 'http.dart';
+part 'mustache.dart';
+part 'node_cursor.dart';
+part 'selector.dart';
+part 'shadow_dom_component_factory.dart';
+part 'shadowless_shadow_root.dart';
+part 'tagging_compiler.dart';
+part 'tagging_view_factory.dart';
+part 'template_cache.dart';
+part 'transcluding_component_factory.dart';
+part 'tree_sanitizer.dart';
+part 'walking_compiler.dart';
+part 'ng_element.dart';
+
+class CoreDomModule extends Module {
+ CoreDomModule() {
+ value(dom.Window, dom.window);
+ value(ElementProbe, null);
+
+ factory(TemplateCache, (_) => new TemplateCache(capacity: 0));
+ type(dom.NodeTreeSanitizer, implementedBy: NullTreeSanitizer);
+
+ type(TextMustache);
+ type(AttrMustache);
+
+ type(Compiler, implementedBy: TaggingCompiler);
+
+ type(ComponentFactory, implementedBy: ShadowDomComponentFactory);
+ type(ShadowDomComponentFactory);
+ type(TranscludingComponentFactory);
+ type(Content);
+ value(ContentPort, null);
+
+ type(Http);
+ type(UrlRewriter);
+ type(HttpBackend);
+ type(HttpDefaultHeaders);
+ type(HttpDefaults);
+ type(HttpInterceptors);
+ type(Animate);
+ type(ViewCache);
+ type(BrowserCookies);
+ type(Cookies);
+ type(LocationWrapper);
+ type(DirectiveMap);
+ type(DirectiveSelectorFactory);
+ type(ElementBinderFactory);
+ type(NgElement);
+ type(EventHandler);
+ }
+}
« no previous file with comments | « third_party/pkg/angular/lib/core_dom/module.dart ('k') | third_party/pkg/angular/lib/core_dom/mustache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698