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

Unified Diff: third_party/WebKit/Source/devtools/front_end/persistence/Persistence.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/persistence/Persistence.js
diff --git a/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js b/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
index 05cb04d135b8cdbf3795b86649204eb8c16aae42..8423ebee8e0038b4f2f6007deff60d9e2f3c20ef 100644
--- a/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
+++ b/third_party/WebKit/Source/devtools/front_end/persistence/Persistence.js
@@ -18,19 +18,19 @@ WebInspector.Persistence = function(workspace, breakpointManager, fileSystemMapp
this._filePathPrefixesToBindingCount = new Map();
this._mapping = new WebInspector.DefaultMapping(workspace, fileSystemMapping, this._onBindingCreated.bind(this), this._onBindingRemoved.bind(this));
-}
+};
WebInspector.Persistence._binding = Symbol("Persistence.Binding");
WebInspector.Persistence._muteCommit = Symbol("Persistence.MuteCommit");
WebInspector.Persistence._NodePrefix = "(function (exports, require, module, __filename, __dirname) { ";
-WebInspector.Persistence._NodeSuffix = "\n});"
+WebInspector.Persistence._NodeSuffix = "\n});";
WebInspector.Persistence._NodeShebang = "#!/usr/bin/env node\n";
WebInspector.Persistence.Events = {
BindingCreated: Symbol("BindingCreated"),
BindingRemoved: Symbol("BindingRemoved")
-}
+};
WebInspector.Persistence.prototype = {
/**
@@ -228,7 +228,7 @@ WebInspector.Persistence.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @constructor
@@ -239,7 +239,7 @@ WebInspector.PersistenceBinding = function(network, fileSystem)
{
this.network = network;
this.fileSystem = fileSystem;
-}
+};
/** @type {!WebInspector.Persistence} */
WebInspector.persistence;

Powered by Google App Engine
This is Rietveld 408576698