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

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

Issue 1105273002: Fix disassembly page after profile page (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
« no previous file with comments | « no previous file | runtime/observatory/lib/src/service/object.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/code_view.dart
diff --git a/runtime/observatory/lib/src/elements/code_view.dart b/runtime/observatory/lib/src/elements/code_view.dart
index 743febcac801a1b07736caf1db81abc88d03fc3f..f6ba19499150af0fb9fe9c1cf6ca2657003cb4c7 100644
--- a/runtime/observatory/lib/src/elements/code_view.dart
+++ b/runtime/observatory/lib/src/elements/code_view.dart
@@ -55,9 +55,9 @@ class CodeViewElement extends ObservatoryElement {
}
code.load().then((Code c) {
c.loadScript();
+ _updateDisassembly();
+ _updateInline();
});
- _updateDisassembly();
- _updateInline();
}
void refresh(var done) {
@@ -234,7 +234,6 @@ class CodeViewElement extends ObservatoryElement {
}
void _updateDisassembly() {
- notifyPropertyChange(#code, true, false);
_updateDiasssemblyTable();
_updateDisassemblyDOMTable();
}
« no previous file with comments | « no previous file | runtime/observatory/lib/src/service/object.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698