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

Unified Diff: plugins/org.chromium.debug.ui/src/org/chromium/debug/ui/liveedit/PushChangesWizard.java

Issue 11833010: Expose liveedit compile error data in SDK (Closed) Base URL: https://chromedevtools.googlecode.com/svn/trunk
Patch Set: fcr Created 7 years, 11 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: plugins/org.chromium.debug.ui/src/org/chromium/debug/ui/liveedit/PushChangesWizard.java
diff --git a/plugins/org.chromium.debug.ui/src/org/chromium/debug/ui/liveedit/PushChangesWizard.java b/plugins/org.chromium.debug.ui/src/org/chromium/debug/ui/liveedit/PushChangesWizard.java
index b92e2759711627ca8abbb35fc6b1646b7d58a838..aa93c6d9461bc052c0a140a412ae5ed7f13d9db1 100644
--- a/plugins/org.chromium.debug.ui/src/org/chromium/debug/ui/liveedit/PushChangesWizard.java
+++ b/plugins/org.chromium.debug.ui/src/org/chromium/debug/ui/liveedit/PushChangesWizard.java
@@ -249,7 +249,7 @@ public class PushChangesWizard {
final LiveEditResultDialog.SingleInput[] input = { null };
UpdatableScript.UpdateCallback callback = new UpdatableScript.UpdateCallback() {
- public void failure(String message) {
+ public void failure(String message, UpdatableScript.Failure failure) {
String text = NLS.bind("Failure: {0}", message);
input[0] = LiveEditResultDialog.createTextInput(text, changesPlan);
}

Powered by Google App Engine
This is Rietveld 408576698