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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/TracingManager.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/sdk/TracingManager.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/TracingManager.js b/third_party/WebKit/Source/devtools/front_end/sdk/TracingManager.js
index dbe4f44a39d95559f4ff7ffb20edb8a5de74dfe7..e617a0c6edb598a6435c4d612a6778ffd53e1e85 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/TracingManager.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/TracingManager.js
@@ -9,7 +9,7 @@
*/
WebInspector.TracingManagerClient = function()
{
-}
+};
WebInspector.TracingManagerClient.prototype = {
tracingStarted: function() { },
@@ -26,7 +26,7 @@ WebInspector.TracingManagerClient.prototype = {
* @param {number} progress
*/
eventsRetrievalProgress: function(progress) { }
-}
+};
/**
* @constructor
@@ -41,7 +41,7 @@ WebInspector.TracingManager = function(target)
this._activeClient = null;
this._eventBufferSize = 0;
this._eventsRetrieved = 0;
-}
+};
/** @typedef {!{
cat: string,
@@ -134,7 +134,7 @@ WebInspector.TracingManager.prototype = {
this._finishing = true;
this._target.tracingAgent().end();
}
-}
+};
/**
* @constructor
@@ -144,7 +144,7 @@ WebInspector.TracingManager.prototype = {
WebInspector.TracingDispatcher = function(tracingManager)
{
this._tracingManager = tracingManager;
-}
+};
WebInspector.TracingDispatcher.prototype = {
/**
@@ -174,4 +174,4 @@ WebInspector.TracingDispatcher.prototype = {
{
this._tracingManager._tracingComplete();
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698