| Index: Source/devtools/front_end/profiler/ProfilesPanel.js
|
| diff --git a/Source/devtools/front_end/profiler/ProfilesPanel.js b/Source/devtools/front_end/profiler/ProfilesPanel.js
|
| index c68d2abf2788c285a1f2fa9db4d6524242fb7038..caa9b0020bb132f2e0e9b2fa18308debf7a3aff2 100644
|
| --- a/Source/devtools/front_end/profiler/ProfilesPanel.js
|
| +++ b/Source/devtools/front_end/profiler/ProfilesPanel.js
|
| @@ -1186,7 +1186,7 @@ WebInspector.ProfileSidebarTreeElement.prototype = {
|
|
|
| onselect: function()
|
| {
|
| - WebInspector.panels.profiles.showProfile(this.profile);
|
| + WebInspector.inspectorView.panel("profiles").showProfile(this.profile);
|
| },
|
|
|
| /**
|
| @@ -1237,7 +1237,7 @@ WebInspector.ProfileGroupSidebarTreeElement.prototype = {
|
| onselect: function()
|
| {
|
| if (this.children.length > 0)
|
| - WebInspector.panels.profiles.showProfile(this.children[this.children.length - 1].profile);
|
| + WebInspector.inspectorView.panel("profiles").showProfile(this.children[this.children.length - 1].profile);
|
| },
|
|
|
| __proto__: WebInspector.SidebarTreeElement.prototype
|
|
|