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

Unified Diff: sdk/lib/_internal/pub/lib/src/barback/barback_server.dart

Issue 209123003: Revert r34269, as it broke the editor build (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 | « no previous file | sdk/lib/_internal/pub/lib/src/barback/old_web_socket_api.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/barback/barback_server.dart
===================================================================
--- sdk/lib/_internal/pub/lib/src/barback/barback_server.dart (revision 34273)
+++ sdk/lib/_internal/pub/lib/src/barback/barback_server.dart (working copy)
@@ -17,7 +17,7 @@
import '../utils.dart';
import 'base_server.dart';
import 'build_environment.dart';
-import 'old_web_socket_api.dart';
+import 'web_socket_api.dart';
/// Callback for determining if an asset with [id] should be served or not.
typedef bool AllowAsset(AssetId id);
@@ -166,7 +166,7 @@
void _handleWebSocket(HttpRequest request) {
Chain.track(WebSocketTransformer.upgrade(request)).then((socket) {
_webSockets.add(socket);
- var api = new OldWebSocketApi(socket, environment);
+ var api = new WebSocketApi(socket, environment);
return api.listen().whenComplete(() {
_webSockets.remove(api);
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/barback/old_web_socket_api.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698