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

Unified Diff: pkg/analysis_server/test/domain_completion_test.dart

Issue 801543002: Rework instrumentation API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean-up Created 6 years 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/test/domain_completion_test.dart
diff --git a/pkg/analysis_server/test/domain_completion_test.dart b/pkg/analysis_server/test/domain_completion_test.dart
index 95dd24017f47abe2d968789e9722d5987e1dad2a..fafd3919933842c6a23c7963eac809cd3d7f1830 100644
--- a/pkg/analysis_server/test/domain_completion_test.dart
+++ b/pkg/analysis_server/test/domain_completion_test.dart
@@ -51,7 +51,7 @@ class CompletionManagerTest extends AbstractAnalysisTest {
index,
new AnalysisServerOptions(),
new MockSdk(),
- new NullInstrumentationServer());
+ InstrumentationService.NULL_SERVICE);
}
void sendRequest(String path) {
@@ -520,7 +520,7 @@ class Test_AnalysisServer extends AnalysisServer {
Test_AnalysisServer(ServerCommunicationChannel channel,
ResourceProvider resourceProvider, PackageMapProvider packageMapProvider,
Index index, AnalysisServerOptions analysisServerOptions, DartSdk defaultSdk,
- InstrumentationServer instrumentationServer)
+ InstrumentationService instrumentationService)
: super(
channel,
resourceProvider,
@@ -528,7 +528,7 @@ class Test_AnalysisServer extends AnalysisServer {
index,
analysisServerOptions,
defaultSdk,
- instrumentationServer);
+ instrumentationService);
AnalysisContext getAnalysisContext(String path) {
return mockContext;
« no previous file with comments | « pkg/analysis_server/test/domain_analysis_test.dart ('k') | pkg/analysis_server/test/domain_execution_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698