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

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

Issue 1356363002: [DevTools] Remove relativeToElement from Dialog. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
Index: Source/devtools/front_end/timeline/TimelinePanel.js
diff --git a/Source/devtools/front_end/timeline/TimelinePanel.js b/Source/devtools/front_end/timeline/TimelinePanel.js
index 115ab2b5fec0c0e2f1338fa35d81351191b12fe8..a9ef226dfcd58090a3f207b13890cae181a61918 100644
--- a/Source/devtools/front_end/timeline/TimelinePanel.js
+++ b/Source/devtools/front_end/timeline/TimelinePanel.js
@@ -705,7 +705,7 @@ WebInspector.TimelinePanel.prototype = {
console.assert(!this._statusDialog, "Status dialog is already opened.");
this._statusDialog = new WebInspector.TimelinePanel.StatusDialog();
this._statusDialog.addEventListener(WebInspector.TimelinePanel.StatusDialog.Events.Finish, this._stopRecording, this);
- WebInspector.Dialog.show(null, this._statusDialog, true);
+ WebInspector.Dialog.show(this._statusDialog, true);
this._updateStatus(WebInspector.UIString("Initializing recording\u2026"));
this._autoRecordGeneration = userInitiated ? null : {};
« no previous file with comments | « Source/devtools/front_end/sources/StyleSheetOutlineDialog.js ('k') | Source/devtools/front_end/ui/Dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698