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

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

Issue 928833003: Add Function based profile tree (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | « runtime/observatory/lib/service.dart ('k') | runtime/observatory/lib/src/app/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 38269dfff23e49e408cc1b10f8134d6a706fc874..86e71e5ef9ab2f11b911e3df655cb789aeb1dd02 100644
--- a/runtime/observatory/lib/src/app/location_manager.dart
+++ b/runtime/observatory/lib/src/app/location_manager.dart
@@ -76,7 +76,8 @@ abstract class LocationManager extends Observable {
}
/// Handle clicking on an application url link.
- void onGoto(MouseEvent event, var detail, Element target) {
+ void onGoto(MouseEvent event) {
+ var target = event.target;
var href = target.attributes['href'];
if (event.button > 0 || event.metaKey || event.ctrlKey ||
event.shiftKey || event.altKey) {
« no previous file with comments | « runtime/observatory/lib/service.dart ('k') | runtime/observatory/lib/src/app/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698