| Index: third_party/WebKit/Source/devtools/front_end/extensions/ExtensionPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionPanel.js b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionPanel.js
|
| index 973cf7b12f273bdb82d4bfb0e5992a9fc873d01f..34c38384223afcd81faf8bbb4c8044bbb62e25fe 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionPanel.js
|
| @@ -50,7 +50,7 @@ WebInspector.ExtensionPanel = function(server, panelName, id, pageURL)
|
|
|
| var extensionView = new WebInspector.ExtensionView(server, this._id, pageURL, "extension");
|
| extensionView.show(this._searchableView.element);
|
| -}
|
| +};
|
|
|
| WebInspector.ExtensionPanel.prototype = {
|
| /**
|
| @@ -127,7 +127,7 @@ WebInspector.ExtensionPanel.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Panel.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -144,7 +144,7 @@ WebInspector.ExtensionButton = function(server, id, iconURL, tooltip, disabled)
|
| this._toolbarButton = new WebInspector.ToolbarButton("", "");
|
| this._toolbarButton.addEventListener("click", server.notifyButtonClicked.bind(server, this._id));
|
| this.update(iconURL, tooltip, disabled);
|
| -}
|
| +};
|
|
|
| WebInspector.ExtensionButton.prototype = {
|
| /**
|
| @@ -169,7 +169,7 @@ WebInspector.ExtensionButton.prototype = {
|
| {
|
| return this._toolbarButton;
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -186,7 +186,7 @@ WebInspector.ExtensionSidebarPane = function(server, panelName, title, id)
|
| this._panelName = panelName;
|
| this._server = server;
|
| this._id = id;
|
| -}
|
| +};
|
|
|
| WebInspector.ExtensionSidebarPane.prototype = {
|
| /**
|
| @@ -306,4 +306,4 @@ WebInspector.ExtensionSidebarPane.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.SimpleView.prototype
|
| -}
|
| +};
|
|
|