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

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

Issue 9691013: Fix invalid syntax in _WebSocketFactoryProvider to fix the build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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 | « client/html/release/html.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/dartium_FactoryProviders.dart
diff --git a/client/html/src/dartium_FactoryProviders.dart b/client/html/src/dartium_FactoryProviders.dart
index 78681ea27e98672589d0b8892523a779bce739aa..eefd6222b1604b8ea75deac5aecd5269898fc74e 100644
--- a/client/html/src/dartium_FactoryProviders.dart
+++ b/client/html/src/dartium_FactoryProviders.dart
@@ -64,5 +64,5 @@ class _PointFactoryProvider {
class _WebSocketFactoryProvider {
- factory WebSocket(String url) => _wrap(new new dom.WebSocket(url));
+ factory WebSocket(String url) => _wrap(new dom.WebSocket(url));
}
« no previous file with comments | « client/html/release/html.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698