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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/WorkerManager.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/WorkerManager.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/WorkerManager.js b/third_party/WebKit/Source/devtools/front_end/sdk/WorkerManager.js
index 1969ff6a6a113ef228e14284c834b3f6a973c87d..fa21c11a7fd743fa2ec42b348751a84787512067 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/WorkerManager.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/WorkerManager.js
@@ -47,7 +47,7 @@ WebInspector.WorkerManager = function(target)
WebInspector.targetManager.addEventListener(WebInspector.TargetManager.Events.SuspendStateChanged, this._onSuspendStateChanged, this);
this._onSuspendStateChanged();
this.enable();
-}
+};
WebInspector.WorkerManager.prototype = {
enable: function()
@@ -155,7 +155,7 @@ WebInspector.WorkerManager.prototype = {
},
__proto__: WebInspector.SDKObject.prototype
-}
+};
/**
* @constructor
@@ -164,7 +164,7 @@ WebInspector.WorkerManager.prototype = {
WebInspector.WorkerDispatcher = function(workerManager)
{
this._workerManager = workerManager;
-}
+};
WebInspector.WorkerDispatcher.prototype = {
/**
@@ -196,7 +196,7 @@ WebInspector.WorkerDispatcher.prototype = {
{
this._workerManager._dispatchMessageFromWorker(workerId, message);
}
-}
+};
/**
* @constructor
@@ -211,7 +211,7 @@ WebInspector.WorkerConnection = function(workerManager, workerId)
this.suppressErrorsForDomains(["Worker", "Page", "CSS", "DOM", "DOMStorage", "Database", "Network", "IndexedDB"]);
this._agent = workerManager.target().workerAgent();
this._workerId = workerId;
-}
+};
WebInspector.WorkerConnection.prototype = {
/**
@@ -229,4 +229,4 @@ WebInspector.WorkerConnection.prototype = {
},
__proto__: InspectorBackendClass.Connection.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698