| Index: third_party/WebKit/Source/devtools/front_end/console/ConsolePanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsolePanel.js b/third_party/WebKit/Source/devtools/front_end/console/ConsolePanel.js
|
| index b38626026b4dddebf27fe6f235a443c800762895..f76e231e48bfee40aed3ecccb2e45b187e78bb8d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsolePanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsolePanel.js
|
| @@ -34,7 +34,7 @@ WebInspector.ConsolePanel = function()
|
| {
|
| WebInspector.Panel.call(this, "console");
|
| this._view = WebInspector.ConsoleView.instance();
|
| -}
|
| +};
|
|
|
| WebInspector.ConsolePanel.prototype = {
|
| /**
|
| @@ -70,7 +70,7 @@ WebInspector.ConsolePanel.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Panel.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -84,7 +84,7 @@ WebInspector.ConsolePanel.WrapperView = function()
|
| WebInspector.ConsolePanel.WrapperView._instance = this;
|
|
|
| this._view = WebInspector.ConsoleView.instance();
|
| -}
|
| +};
|
|
|
| WebInspector.ConsolePanel.WrapperView.prototype = {
|
| wasShown: function()
|
| @@ -106,7 +106,7 @@ WebInspector.ConsolePanel.WrapperView.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.VBox.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -114,7 +114,7 @@ WebInspector.ConsolePanel.WrapperView.prototype = {
|
| */
|
| WebInspector.ConsolePanel.ConsoleRevealer = function()
|
| {
|
| -}
|
| +};
|
|
|
| WebInspector.ConsolePanel.ConsoleRevealer.prototype = {
|
| /**
|
| @@ -132,7 +132,7 @@ WebInspector.ConsolePanel.ConsoleRevealer.prototype = {
|
| WebInspector.viewManager.showView("console-view");
|
| return Promise.resolve();
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @return {!WebInspector.ConsolePanel}
|
| @@ -140,4 +140,4 @@ WebInspector.ConsolePanel.ConsoleRevealer.prototype = {
|
| WebInspector.ConsolePanel.instance = function()
|
| {
|
| return /** @type {!WebInspector.ConsolePanel} */ (self.runtime.sharedInstance(WebInspector.ConsolePanel));
|
| -}
|
| +};
|
|
|