| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @constructor | 6 * @constructor |
| 7 * @extends {WebInspector.SidebarPane} | 7 * @extends {WebInspector.SidebarPane} |
| 8 * @param {string} title | 8 * @param {string} title |
| 9 */ | 9 */ |
| 10 WebInspector.ElementsSidebarPane = function(title) | 10 WebInspector.ElementsSidebarPane = function(title) |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 doUpdate: function(finishedCallback) | 39 doUpdate: function(finishedCallback) |
| 40 { | 40 { |
| 41 finishedCallback(); | 41 finishedCallback(); |
| 42 }, | 42 }, |
| 43 | 43 |
| 44 update: function() | 44 update: function() |
| 45 { | 45 { |
| 46 this._updateController.update(); | 46 this._updateController.update(); |
| 47 }, | 47 }, |
| 48 | 48 |
| 49 wasShown: function() | 49 wasShown: function() |
| 50 { | 50 { |
| 51 WebInspector.SidebarPane.prototype.wasShown.call(this); | 51 WebInspector.SidebarPane.prototype.wasShown.call(this); |
| 52 this._updateController.viewWasShown(); | 52 this._updateController.viewWasShown(); |
| 53 }, | 53 }, |
| 54 | 54 |
| 55 __proto__: WebInspector.SidebarPane.prototype | 55 __proto__: WebInspector.SidebarPane.prototype |
| 56 } | 56 } |
| 57 | 57 |
| 58 /** | 58 /** |
| 59 * @constructor | 59 * @constructor |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 * @override | 151 * @override |
| 152 * @return {!WebInspector.Widget} | 152 * @return {!WebInspector.Widget} |
| 153 */ | 153 */ |
| 154 view: function() | 154 view: function() |
| 155 { | 155 { |
| 156 return this; | 156 return this; |
| 157 }, | 157 }, |
| 158 | 158 |
| 159 __proto__: WebInspector.Widget.prototype | 159 __proto__: WebInspector.Widget.prototype |
| 160 } | 160 } |
| OLD | NEW |