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

Unified Diff: third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystemManager.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/IsolatedFileSystemManager.js
diff --git a/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystemManager.js b/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystemManager.js
index a78b36ca1b7c8daa17482f90a8f304a6fcfb811e..0bbbe7d9436585721456cb05602e1398da01b37a 100644
--- a/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystemManager.js
+++ b/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystemManager.js
@@ -54,7 +54,7 @@ WebInspector.IsolatedFileSystemManager = function()
this._initExcludePatterSetting();
this._fileSystemsLoadedPromise = this._requestFileSystems();
-}
+};
/** @typedef {!{fileSystemName: string, rootURL: string, fileSystemPath: string}} */
WebInspector.IsolatedFileSystemManager.FileSystem;
@@ -66,7 +66,7 @@ WebInspector.IsolatedFileSystemManager.Events = {
FileSystemFilesChanged: Symbol("FileSystemFilesChanged"),
ExcludedFolderAdded: Symbol("ExcludedFolderAdded"),
ExcludedFolderRemoved: Symbol("ExcludedFolderRemoved")
-}
+};
WebInspector.IsolatedFileSystemManager._lastRequestId = 0;
@@ -342,7 +342,7 @@ WebInspector.IsolatedFileSystemManager.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @type {!WebInspector.IsolatedFileSystemManager}

Powered by Google App Engine
This is Rietveld 408576698