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

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

Issue 208703003: Use the right name for the OldWebSocketApi constructor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: roll forward web socket change 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
Index: sdk/lib/_internal/pub/lib/src/barback/old_web_socket_api.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback/web_socket_api.dart b/sdk/lib/_internal/pub/lib/src/barback/old_web_socket_api.dart
similarity index 98%
copy from sdk/lib/_internal/pub/lib/src/barback/web_socket_api.dart
copy to sdk/lib/_internal/pub/lib/src/barback/old_web_socket_api.dart
index eeb804f98f6947641fb86e6c20dbf9f36db893b3..4790582c1476527bf4b463f2f063f9c68121ff9d 100644
--- a/sdk/lib/_internal/pub/lib/src/barback/web_socket_api.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback/old_web_socket_api.dart
@@ -2,21 +2,20 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library pub.barback.web_socket_api;
+// TODO(nweiz): Remove this when the Editor is using the admin server port. See
+// issue 17640.
+library pub.barback.old_web_socket_api;
import 'dart:async';
import 'dart:convert';
import 'dart:io';
-import 'package:barback/barback.dart';
import 'package:path/path.dart' as path;
import 'package:stack_trace/stack_trace.dart';
-import '../log.dart' as log;
import '../utils.dart';
import 'build_environment.dart';
-import '../log.dart' as log;
/// Implements the [WebSocket] API for communicating with a running pub serve
/// process, mainly for use by the Editor.
@@ -53,13 +52,13 @@ import '../log.dart' as log;
/// category of error.
///
/// No successful response map will contain a key named "error".
-class WebSocketApi {
+class OldWebSocketApi {
final WebSocket _socket;
final BuildEnvironment _environment;
Map<String, _CommandHandler> _commands;
- WebSocketApi(this._socket, this._environment) {
+ OldWebSocketApi(this._socket, this._environment) {
_commands = {
"urlToAssetId": _urlToAssetId,
"pathToUrls": _pathToUrls,
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/base_server.dart ('k') | sdk/lib/_internal/pub/lib/src/barback/web_socket_api.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698