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

Unified Diff: Source/devtools/front_end/timeline/TimelineOverviewPane.js

Issue 467523002: Update Timeline overview pane when recording is stopped in Frame mode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | Source/devtools/front_end/timeline/TimelinePanel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/timeline/TimelineOverviewPane.js
diff --git a/Source/devtools/front_end/timeline/TimelineOverviewPane.js b/Source/devtools/front_end/timeline/TimelineOverviewPane.js
index e8e6aad56d25b22038d96f52991cd4a889e674d4..933bb7b3d67163bf3dc3e1d4f90a26465af96fab 100644
--- a/Source/devtools/front_end/timeline/TimelineOverviewPane.js
+++ b/Source/devtools/front_end/timeline/TimelineOverviewPane.js
@@ -87,8 +87,6 @@ WebInspector.TimelineOverviewPane.prototype = {
update: function()
{
- delete this._refreshTimeout;
-
if (this._model.isEmpty())
this._overviewCalculator._setWindow(0, 1000);
else
@@ -173,15 +171,6 @@ WebInspector.TimelineOverviewPane.prototype = {
this._muteOnWindowChanged = false;
},
- _scheduleRefresh: function()
- {
- if (this._refreshTimeout)
- return;
- if (!this.isShowing())
- return;
- this._refreshTimeout = setTimeout(this.update.bind(this), 300);
- },
-
__proto__: WebInspector.VBox.prototype
}
« no previous file with comments | « no previous file | Source/devtools/front_end/timeline/TimelinePanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698