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

Unified Diff: third_party/WebKit/Source/devtools/front_end/snippets/ScriptSnippetModel.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/ScriptSnippetModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/snippets/ScriptSnippetModel.js b/third_party/WebKit/Source/devtools/front_end/snippets/ScriptSnippetModel.js
index b3905d141e2a7a612981aeb51e5d78f690bbe016..f0eff4450bdd129729b7c10f9019f49a082d6fa8 100644
--- a/third_party/WebKit/Source/devtools/front_end/snippets/ScriptSnippetModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/snippets/ScriptSnippetModel.js
@@ -49,7 +49,7 @@ WebInspector.ScriptSnippetModel = function(workspace)
this._project = new WebInspector.SnippetsProject(workspace, this);
this._loadSnippets();
WebInspector.targetManager.observeTargets(this);
-}
+};
WebInspector.ScriptSnippetModel.snippetSourceURLPrefix = "snippets:///";
@@ -370,7 +370,7 @@ WebInspector.ScriptSnippetModel.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @constructor
@@ -390,7 +390,7 @@ WebInspector.SnippetScriptMapping = function(debuggerModel, scriptSnippetModel)
/** @type {!Map.<!WebInspector.UISourceCode, number>} */
this._evaluationIndexForUISourceCode = new Map();
debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._reset, this);
-}
+};
WebInspector.SnippetScriptMapping.prototype = {
/**
@@ -521,7 +521,7 @@ WebInspector.SnippetScriptMapping.prototype = {
{
return true;
}
-}
+};
/**
* @constructor
@@ -531,7 +531,7 @@ WebInspector.SnippetScriptMapping.prototype = {
WebInspector.SnippetContentProvider = function(snippet)
{
this._snippet = snippet;
-}
+};
WebInspector.SnippetContentProvider.prototype = {
/**
@@ -581,7 +581,7 @@ WebInspector.SnippetContentProvider.prototype = {
// searchInContent should call back later.
window.setTimeout(performSearch.bind(this), 0);
}
-}
+};
/**
* @constructor
@@ -593,7 +593,7 @@ WebInspector.SnippetsProject = function(workspace, model)
{
WebInspector.ContentProviderBasedProject.call(this, workspace, "snippets:", WebInspector.projectTypes.Snippets, "");
this._model = model;
-}
+};
WebInspector.SnippetsProject.prototype = {
/**
@@ -669,7 +669,7 @@ WebInspector.SnippetsProject.prototype = {
},
__proto__: WebInspector.ContentProviderBasedProject.prototype
-}
+};
/**
* @type {!WebInspector.ScriptSnippetModel}

Powered by Google App Engine
This is Rietveld 408576698