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

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

Issue 2339303003: Cleanup some Observatory errors caught by dart2js (Closed)
Patch Set: Created 4 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/debugger.dart
diff --git a/runtime/observatory/lib/src/elements/debugger.dart b/runtime/observatory/lib/src/elements/debugger.dart
index dc5f4439aa4f2a4c073c870d7cf807ee29a6c8a1..8c817e558ca7654289e0253479038c6f65a1c5bc 100644
--- a/runtime/observatory/lib/src/elements/debugger.dart
+++ b/runtime/observatory/lib/src/elements/debugger.dart
@@ -2048,6 +2048,11 @@ class DebuggerPageElement extends HtmlElement implements Renderable {
}
@override
+ void render() {
+ /* nothing to do */
+ }
+
+ @override
void detached() {
_timer.cancel();
children = const [];
@@ -2168,6 +2173,10 @@ class DebuggerStackElement extends HtmlElement implements Renderable {
return e;
}
+ void render() {
+ /* nothing to do */
+ }
+
_addFrame(List frameList, S.Frame frameInfo) {
final frameElement = new DebuggerFrameElement(_isolate,
frameInfo,
@@ -2926,6 +2935,10 @@ class DebuggerConsoleElement extends HtmlElement implements Renderable {
children.clear();
}
+ void render() {
+ /* nothing to do */
+ }
+
ObservatoryApplication get app => ObservatoryApplication.app;
}
@@ -3100,6 +3113,10 @@ class DebuggerInputElement extends HtmlElement implements Renderable {
void focus() {
_textBox.focus();
}
+
+ void render() {
+ // Nothing to do.
+ }
}
final SvgSvgElement iconExpandLess = new SvgSvgElement()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698