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

Unified Diff: client/html/src/_FactoryProviders.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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 | « client/html/src/WindowWrappingImplementation.dart ('k') | client/samples/dartcombat/setup.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/src/_FactoryProviders.dart
diff --git a/client/html/src/_FactoryProviders.dart b/client/html/src/_FactoryProviders.dart
index ca12791a958e3e3151c65c8f65db252ec877cc21..11334a79eece3e574c2f6cf0deedf3c7b59638f6 100644
--- a/client/html/src/_FactoryProviders.dart
+++ b/client/html/src/_FactoryProviders.dart
@@ -6,14 +6,14 @@
// These factory methods could all live in one factory provider class but dartc
// has a bug (5399939) preventing that.
-class FileReaderFactoryProvider {
+class _FileReaderFactoryProvider {
factory FileReader() {
return new dom.FileReader();
}
}
-class CSSMatrixFactoryProvider {
+class _CSSMatrixFactoryProvider {
factory CSSMatrix([String spec = '']) {
return new CSSMatrixWrappingImplementation._wrap(
@@ -21,7 +21,7 @@ class CSSMatrixFactoryProvider {
}
}
-class PointFactoryProvider {
+class _PointFactoryProvider {
factory Point(num x, num y) {
return new PointWrappingImplementation._wrap(new dom.WebKitPoint(x, y));
« no previous file with comments | « client/html/src/WindowWrappingImplementation.dart ('k') | client/samples/dartcombat/setup.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698