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

Unified Diff: dart/site/try/src/compilation.dart

Issue 368293002: Fix warnings about unused code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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 | dart/site/try/src/editor.dart » ('j') | dart/site/try/src/interaction_manager.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/site/try/src/compilation.dart
diff --git a/dart/site/try/src/compilation.dart b/dart/site/try/src/compilation.dart
index d9b28afb0b3c7af711727c306b0a540da1475ac7..0fcc7937089ab020dd17cb61b6574183475fd45c 100644
--- a/dart/site/try/src/compilation.dart
+++ b/dart/site/try/src/compilation.dart
@@ -139,8 +139,7 @@ class CompilationProcess {
}
onFail(_) {
- // TODO(ahe): Call interaction.onCompilationFailed().
- interaction.consolePrintLine('Compilation failed');
+ interaction.onCompilationFailed();
ahe 2014/07/03 14:44:50 Bad merge.
}
onDone(_) {
@@ -256,6 +255,6 @@ self.importScripts("$url");
}
onCrash(data) {
- interaction.consolePrintLine(data);
+ interaction.onCompilerCrash(data);
ahe 2014/07/03 14:44:50 Bad merge.
}
}
« no previous file with comments | « no previous file | dart/site/try/src/editor.dart » ('j') | dart/site/try/src/interaction_manager.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698