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

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

Issue 1058283006: Update pubspecs and dependencies to get pkgbuild tests working. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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.dart
diff --git a/third_party/pkg/angular/lib/core_dom/module.dart b/third_party/pkg/angular/lib/core_dom/module.dart
deleted file mode 100644
index d193675d3c7ed454fa5be56c995ed17cd3e4e04b..0000000000000000000000000000000000000000
--- a/third_party/pkg/angular/lib/core_dom/module.dart
+++ /dev/null
@@ -1,62 +0,0 @@
-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';
-
-part 'block.dart';
-part 'block_factory.dart';
-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';
-part 'selector.dart';
-part 'template_cache.dart';
-part 'tree_sanitizer.dart';
-
-class NgCoreDomModule extends Module {
- NgCoreDomModule() {
- value(dom.Window, dom.window);
-
- factory(TemplateCache, (_) => new TemplateCache(capacity: 0));
- type(dom.NodeTreeSanitizer, implementedBy: NullTreeSanitizer);
-
- type(NgTextMustacheDirective);
- type(NgAttrMustacheDirective);
-
- type(Compiler);
- type(Http);
- type(UrlRewriter);
- type(HttpBackend);
- type(HttpDefaultHeaders);
- type(HttpDefaults);
- type(HttpInterceptors);
- type(BlockCache);
- type(BrowserCookies);
- type(Cookies);
- type(LocationWrapper);
- type(FieldMetadataExtractor);
- type(DirectiveMap);
- }
-}
-
-/**
- * Implementing components [onShadowRoot] method will be called when
- * the template for the component has been loaded and inserted into Shadow DOM.
- * It is guaranteed that when [onShadowRoot] is invoked, that shadow DOM
- * has been loaded and is ready.
- */
-abstract class NgShadowRootAware {
- void onShadowRoot(dom.ShadowRoot shadowRoot);
-}
« no previous file with comments | « third_party/pkg/angular/lib/core_dom/http.dart ('k') | third_party/pkg/angular/lib/core_dom/ng_mustache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698