Index: third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js b/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js |
index f46137781f9810ba6c5c7ba8b310831006daf6a8..12616cc8efbf0853bea7063fc7f58c9b8ce5f4e8 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js |
+++ b/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js |
@@ -269,6 +269,9 @@ WebInspector.ElementsPanel.prototype = { |
return this._searchableView; |
}, |
+ /** |
+ * @override |
+ */ |
wasShown: function() |
{ |
WebInspector.context.setFlavor(WebInspector.ElementsPanel, this); |
@@ -295,6 +298,9 @@ WebInspector.ElementsPanel.prototype = { |
this.focus(); |
}, |
+ /** |
+ * @override |
+ */ |
willHide: function() |
{ |
WebInspector.context.setFlavor(WebInspector.ElementsPanel, null); |
@@ -311,6 +317,9 @@ WebInspector.ElementsPanel.prototype = { |
WebInspector.Panel.prototype.willHide.call(this); |
}, |
+ /** |
+ * @override |
+ */ |
onResize: function() |
{ |
if (WebInspector.moduleSetting("sidebarPosition").get() === "auto") |