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

Unified Diff: runtime/observatory/lib/src/elements/observatory_element.dart

Issue 1072423003: When attempting to navigate to a page for an isolate that doesn't exist, offer to (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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: runtime/observatory/lib/src/elements/observatory_element.dart
diff --git a/runtime/observatory/lib/src/elements/observatory_element.dart b/runtime/observatory/lib/src/elements/observatory_element.dart
index 0b362b3b6e83cbe6a1dff40e41af068ff379b47e..f516bacbe6a214fd87b5d7c2a34f919e2b100636 100644
--- a/runtime/observatory/lib/src/elements/observatory_element.dart
+++ b/runtime/observatory/lib/src/elements/observatory_element.dart
@@ -116,6 +116,9 @@ class ObservatoryElement extends PolymerElement {
String gotoLink(String url, [ServiceObject obj]) {
return app.locationManager.makeLink(makeLink(url, obj));
}
+ String gotoLinkForwardingParameters(String url, [ServiceObject obj]) {
+ return app.locationManager.makeLinkForwardingParameters(makeLink(url, obj));
+ }
String formatTimePrecise(double time) => Utils.formatTimePrecise(time);
String formatTimeMilliseconds(int millis) =>

Powered by Google App Engine
This is Rietveld 408576698