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

Unified Diff: third_party/WebKit/Source/devtools/front_end/workspace/Workspace.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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/workspace/Workspace.js
diff --git a/third_party/WebKit/Source/devtools/front_end/workspace/Workspace.js b/third_party/WebKit/Source/devtools/front_end/workspace/Workspace.js
index 89d3c9c2badf142da28ed020649fce6f698a43c2..870cd8502e2cb91ecefe5c39ae79c536f062c265 100644
--- a/third_party/WebKit/Source/devtools/front_end/workspace/Workspace.js
+++ b/third_party/WebKit/Source/devtools/front_end/workspace/Workspace.js
@@ -31,7 +31,7 @@
/**
* @interface
*/
-WebInspector.ProjectSearchConfig = function() {}
+WebInspector.ProjectSearchConfig = function() {};
WebInspector.ProjectSearchConfig.prototype = {
/**
@@ -59,12 +59,12 @@ WebInspector.ProjectSearchConfig.prototype = {
* @return {boolean}
*/
filePathMatchesFileQuery: function(filePath) { }
-}
+};
/**
* @interface
*/
-WebInspector.Project = function() { }
+WebInspector.Project = function() { };
/**
* @param {!WebInspector.Project} project
@@ -73,7 +73,7 @@ WebInspector.Project = function() { }
WebInspector.Project.isServiceProject = function(project)
{
return project.type() === WebInspector.projectTypes.Debugger || project.type() === WebInspector.projectTypes.Formatter || project.type() === WebInspector.projectTypes.Service;
-}
+};
WebInspector.Project.prototype = {
/**
@@ -184,7 +184,7 @@ WebInspector.Project.prototype = {
* @return {!Array.<!WebInspector.UISourceCode>}
*/
uiSourceCodes: function() { }
-}
+};
/**
* @enum {string}
@@ -197,7 +197,7 @@ WebInspector.projectTypes = {
FileSystem: "filesystem",
ContentScripts: "contentscripts",
Service: "service"
-}
+};
/**
* @constructor
@@ -219,7 +219,7 @@ WebInspector.ProjectStore = function(workspace, id, type, displayName)
this._uiSourceCodesList = [];
this._project = /** @type {!WebInspector.Project} */(this);
-}
+};
WebInspector.ProjectStore.prototype = {
/**
@@ -340,7 +340,7 @@ WebInspector.ProjectStore.prototype = {
this._uiSourceCodesMap.set(newPath, value);
this._uiSourceCodesMap.delete(oldPath);
}
-}
+};
/**
* @constructor
@@ -351,7 +351,7 @@ WebInspector.Workspace = function()
/** @type {!Map<string, !WebInspector.Project>} */
this._projects = new Map();
this._hasResourceContentTrackingExtensions = false;
-}
+};
/** @enum {symbol} */
WebInspector.Workspace.Events = {
@@ -362,7 +362,7 @@ WebInspector.Workspace.Events = {
WorkingCopyCommittedByUser: Symbol("WorkingCopyCommittedByUser"),
ProjectAdded: Symbol("ProjectAdded"),
ProjectRemoved: Symbol("ProjectRemoved")
-}
+};
WebInspector.Workspace.prototype = {
/**
@@ -481,7 +481,7 @@ WebInspector.Workspace.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @type {!WebInspector.Workspace}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698