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

Unified Diff: third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.js

Issue 2319823002: DevTools: Fix eslint errors (Closed)
Patch Set: Created 4 years, 3 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/security/SecurityPanel.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/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 d79c5ff84d10d072ff54c46515879cef000f45e1..62f12f9f050ffd07a6b830054ad7964e10c77d3c 100644
--- a/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.js
+++ b/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.js
@@ -216,7 +216,7 @@ WebInspector.IsolatedFileSystem.prototype = {
*/
function fileCreationError(error)
{
- if (error.name === 'InvalidModificationError') {
+ if (error.name === "InvalidModificationError") {
dirEntryLoaded.call(this, dirEntry);
return;
}
@@ -324,7 +324,7 @@ WebInspector.IsolatedFileSystem.prototype = {
*/
function errorHandler(error)
{
- if (error.name === 'NotFoundError') {
+ if (error.name === "NotFoundError") {
callback(null);
return;
}
@@ -438,7 +438,7 @@ WebInspector.IsolatedFileSystem.prototype = {
*/
function newFileEntryLoadErrorHandler(error)
{
- if (error.name !== 'NotFoundError') {
+ if (error.name !== "NotFoundError") {
callback(false);
return;
}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698