| Index: third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js b/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js
|
| index d4026c0c1086d2fcd1fa41c1183847cc602f5ed2..b8ec6555b768a359e735433614f68494bc4a0418 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/audits2/Audits2Panel.js
|
| @@ -12,7 +12,7 @@ WebInspector.Audits2Panel = function()
|
| this.contentElement.classList.add("vbox");
|
| this.contentElement.appendChild(createTextButton(WebInspector.UIString("Start"), this._start.bind(this)));
|
| this.contentElement.appendChild(createTextButton(WebInspector.UIString("Stop"), this._stop.bind(this)));
|
| -}
|
| +};
|
|
|
| WebInspector.Audits2Panel.prototype = {
|
| _start: function()
|
| @@ -58,4 +58,4 @@ WebInspector.Audits2Panel.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Panel.prototype
|
| -}
|
| +};
|
|
|