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

Unified Diff: third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.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/workspace/IsolatedFileSystem.js
diff --git a/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.js b/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.js
index 155cd3e24a441a18fe047a75ae243639a43ed314..86d4c8e38bbef0cf8a3122c8cd391cf0fe94ae5f 100644
--- a/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.js
+++ b/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.js
@@ -51,7 +51,7 @@ WebInspector.IsolatedFileSystem = function(manager, path, embedderPath, domFileS
this._filePaths = new Set();
/** @type {!Set<string>} */
this._gitFolders = new Set();
-}
+};
WebInspector.IsolatedFileSystem.ImageExtensions = new Set(["jpeg", "jpg", "svg", "gif", "webp", "png", "ico", "tiff", "tif", "bmp"]);
@@ -92,7 +92,7 @@ WebInspector.IsolatedFileSystem.create = function(manager, path, embedderPath, n
}
return fileSystem._initializeFilePaths();
}
-}
+};
/**
* @param {!DOMError} error
@@ -101,7 +101,7 @@ WebInspector.IsolatedFileSystem.create = function(manager, path, embedderPath, n
WebInspector.IsolatedFileSystem.errorMessage = function(error)
{
return WebInspector.UIString("File system error: %s", error.message);
-}
+};
WebInspector.IsolatedFileSystem.prototype = {
/**
@@ -679,4 +679,4 @@ WebInspector.IsolatedFileSystem.prototype = {
var requestId = this._manager.registerProgress(progress);
InspectorFrontendHost.indexPath(requestId, this._embedderPath);
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698