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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/SecurityOriginManager.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/SecurityOriginManager.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/SecurityOriginManager.js b/third_party/WebKit/Source/devtools/front_end/sdk/SecurityOriginManager.js
index f226a4e19b8b7750e05f566b77fb8edf02bde29a..fed45e9d0bfc838ba4eb073934853b89b47f35bf 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/SecurityOriginManager.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/SecurityOriginManager.js
@@ -13,14 +13,14 @@ WebInspector.SecurityOriginManager = function(target)
this._securityOriginCounter = new Map();
this._mainSecurityOrigin = "";
-}
+};
/** @enum {symbol} */
WebInspector.SecurityOriginManager.Events = {
SecurityOriginAdded: Symbol("SecurityOriginAdded"),
SecurityOriginRemoved: Symbol("SecurityOriginRemoved"),
MainSecurityOriginChanged: Symbol("MainSecurityOriginChanged")
-}
+};
/**
* @param {!WebInspector.Target} target
@@ -32,7 +32,7 @@ WebInspector.SecurityOriginManager.fromTarget = function(target)
if (!securityOriginManager)
securityOriginManager = new WebInspector.SecurityOriginManager(target);
return securityOriginManager;
-}
+};
WebInspector.SecurityOriginManager.prototype = {
/**
@@ -89,4 +89,4 @@ WebInspector.SecurityOriginManager.prototype = {
},
__proto__: WebInspector.SDKModel.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698