| Index: third_party/WebKit/Source/devtools/front_end/extensions/ExtensionTraceProvider.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionTraceProvider.js b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionTraceProvider.js
|
| index b6cf93c52d2183f62b5f9179850d31880c6b8086..47eb94d51bbb6c644b5b7b83877ecc479638e23a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionTraceProvider.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionTraceProvider.js
|
| @@ -11,7 +11,7 @@ WebInspector.ExtensionTraceProvider = function(extensionOrigin, id, categoryName
|
| this._id = id;
|
| this._categoryName = categoryName;
|
| this._categoryTooltip = categoryTooltip;
|
| -}
|
| +};
|
|
|
| WebInspector.ExtensionTraceProvider.prototype = {
|
| start: function()
|
| @@ -23,4 +23,4 @@ WebInspector.ExtensionTraceProvider.prototype = {
|
| {
|
| WebInspector.extensionServer.stopTraceRecording(this._id);
|
| }
|
| -}
|
| +};
|
|
|