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

Unified Diff: third_party/WebKit/Source/devtools/front_end/snippets/SnippetStorage.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/snippets/SnippetStorage.js
diff --git a/third_party/WebKit/Source/devtools/front_end/snippets/SnippetStorage.js b/third_party/WebKit/Source/devtools/front_end/snippets/SnippetStorage.js
index 6afd4551650eef4443515c6d9477d4ea868e90b2..e4f1894325f20a7a6cd5f029bd5ccec25cfc455e 100644
--- a/third_party/WebKit/Source/devtools/front_end/snippets/SnippetStorage.js
+++ b/third_party/WebKit/Source/devtools/front_end/snippets/SnippetStorage.js
@@ -42,7 +42,7 @@ WebInspector.SnippetStorage = function(settingPrefix, namePrefix)
this._namePrefix = namePrefix;
this._loadSettings();
-}
+};
WebInspector.SnippetStorage.prototype = {
get namePrefix()
@@ -127,7 +127,7 @@ WebInspector.SnippetStorage.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @constructor
@@ -143,7 +143,7 @@ WebInspector.Snippet = function(storage, id, name, content)
this._id = id;
this._name = name || storage.namePrefix + id;
this._content = content || "";
-}
+};
/**
* @param {!WebInspector.SnippetStorage} storage
@@ -153,7 +153,7 @@ WebInspector.Snippet = function(storage, id, name, content)
WebInspector.Snippet.fromObject = function(storage, serializedSnippet)
{
return new WebInspector.Snippet(storage, serializedSnippet.id, serializedSnippet.name, serializedSnippet.content);
-}
+};
WebInspector.Snippet.prototype = {
/**
@@ -211,4 +211,4 @@ WebInspector.Snippet.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698