Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Unified Diff: third_party/WebKit/Source/devtools/front_end/extensions/ExtensionTraceProvider.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698