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

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

Issue 8659025: Fixes to the html library matching vsm's changes to the generated code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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/release/htmlimpl.dart ('k') | no next file » | 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 3bfcc308201b779f976df354df77b66afabb14ff..de4680e2cefe62ccb65a14651e7d2fbb705d6fd7 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 {
/** @domName Window.createWebKitPoint */
factory Point(num x, num y) {
« no previous file with comments | « client/html/release/htmlimpl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698