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

Unified Diff: lib/src/init.dart

Issue 1091903002: Move DomProxyMixin to this package (Closed) Base URL: git@github.com:dart-lang/web-components.git@master
Patch Set: format 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
« no previous file with comments | « lib/custom_element_proxy.dart ('k') | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/init.dart
diff --git a/lib/src/init.dart b/lib/src/init.dart
index 47d39eabbae7f9ec1da5450a14a7d7db1711f8e4..d2906ef8f13c928e0ada77662c7d4eafdf76972d 100644
--- a/lib/src/init.dart
+++ b/lib/src/init.dart
@@ -23,8 +23,9 @@ Future initWebComponents({List<Type> typeFilter, InitializerFilter customFilter,
if (typeFilter != null || customFilter != null) {
return init.run(typeFilter: typeFilter, customFilter: customFilter);
} else {
- return init.run(typeFilter: [HtmlImport])
- .then((_) => init.run(typeFilter: [CustomElement, CustomElementProxy]))
- .then((_) => initAll ? init.run() : null);
+ return init
+ .run(typeFilter: [HtmlImport])
+ .then((_) => init.run(typeFilter: [CustomElement, CustomElementProxy]))
+ .then((_) => initAll ? init.run() : null);
}
}
« no previous file with comments | « lib/custom_element_proxy.dart ('k') | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698