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

Unified Diff: pkg/analysis_server/lib/src/domain_server.dart

Issue 304273007: Use 'analysis.setSubscriptions' HIGHLIGHTS in Editor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use addAnalysisSubscription/removeAnalysisSubscription Created 6 years, 7 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: pkg/analysis_server/lib/src/domain_server.dart
diff --git a/pkg/analysis_server/lib/src/domain_server.dart b/pkg/analysis_server/lib/src/domain_server.dart
index 4c0ee40ebc07e5c53693050f99ccf2a932661858..9f9867b14902251db335d619211c412f7f3c14fb 100644
--- a/pkg/analysis_server/lib/src/domain_server.dart
+++ b/pkg/analysis_server/lib/src/domain_server.dart
@@ -29,7 +29,7 @@ class ServerDomainHandler implements RequestHandler {
String requestName = request.method;
if (requestName == METHOD_GET_VERSION) {
return getVersion(request);
- } else if (requestName == METHOD_SET_SUBSCRIPTIONS) {
+ } else if (requestName == METHOD_SET_SERVER_SUBSCRIPTIONS) {
return setSubscriptions(request);
} else if (requestName == METHOD_SHUTDOWN) {
return shutdown(request);
« no previous file with comments | « pkg/analysis_server/lib/src/domain_analysis.dart ('k') | pkg/analysis_server/test/domain_analysis_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698