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/shadowless_shadow_root.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/shadowless_shadow_root.dart
diff --git a/third_party/pkg/angular/lib/core_dom/shadowless_shadow_root.dart b/third_party/pkg/angular/lib/core_dom/shadowless_shadow_root.dart
new file mode 100644
index 0000000000000000000000000000000000000000..d4994a458606a15df3f570a3b7d3397705bc312d
--- /dev/null
+++ b/third_party/pkg/angular/lib/core_dom/shadowless_shadow_root.dart
@@ -0,0 +1,12 @@
+part of angular.core.dom_internal;
+
+@proxy
+class ShadowlessShadowRoot implements dom.ShadowRoot {
+ dom.Element _element;
+
+ ShadowlessShadowRoot(this._element);
+
+ noSuchMethod(Invocation invocation) {
+ throw new UnimplementedError("Not yet implemented in ShadowlessShadowRoot.");
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698