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

Unified Diff: runtime/observatory/lib/src/app/location_manager.dart

Issue 1100583006: Add crash dumps to service protocol and Observatory (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/app/location_manager.dart
diff --git a/runtime/observatory/lib/src/app/location_manager.dart b/runtime/observatory/lib/src/app/location_manager.dart
index 13f9091c228dfaed5eb205f20ffd3761d68f3d8b..bf91910d70820b88e7457009b20a186be38e8388 100644
--- a/runtime/observatory/lib/src/app/location_manager.dart
+++ b/runtime/observatory/lib/src/app/location_manager.dart
@@ -84,12 +84,12 @@ class LocationManager extends Observable {
/// Navigate to [url].
void go(String url, [bool addToBrowserHistory = true]) {
- if ((url != makeLink('/vm-connect/')) && _app.vm == null) {
+ if ((url != makeLink('/vm-connect')) && _app.vm == null) {
if (!window.confirm('Connection with VM has been lost. '
'Proceeding will lose current page.')) {
return;
}
- url = makeLink('/vm-connect/');
+ url = makeLink('/vm-connect');
}
if (addToBrowserHistory) {
_addToBrowserHistory(url);

Powered by Google App Engine
This is Rietveld 408576698