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

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

Issue 2563763003: DevTools: roll closure compiler to 20161201. (Closed)
Patch Set: rebaselined Created 4 years 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 07f2824ba091302264670984d697c9a4396d1e1e..51383e6971509747cfd1a6dc84247c2673a2682a 100644
--- a/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.js
+++ b/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.js
@@ -107,7 +107,7 @@ Workspace.IsolatedFileSystem = class {
getMetadata(path) {
var fulfill;
var promise = new Promise(f => fulfill = f);
- this._domFileSystem.root.getFile(path, null, fileEntryLoaded, errorHandler);
+ this._domFileSystem.root.getFile(path, undefined, fileEntryLoaded, errorHandler);
return promise;
/**
@@ -228,7 +228,7 @@ Workspace.IsolatedFileSystem = class {
name = 'NewFile';
var nameCandidate;
- this._domFileSystem.root.getDirectory(path, null, dirEntryLoaded.bind(this), errorHandler.bind(this));
+ this._domFileSystem.root.getDirectory(path, undefined, dirEntryLoaded.bind(this), errorHandler.bind(this));
/**
* @param {!DirectoryEntry} dirEntry
@@ -278,7 +278,7 @@ Workspace.IsolatedFileSystem = class {
* @param {string} path
*/
deleteFile(path) {
- this._domFileSystem.root.getFile(path, null, fileEntryLoaded.bind(this), errorHandler.bind(this));
+ this._domFileSystem.root.getFile(path, undefined, fileEntryLoaded.bind(this), errorHandler.bind(this));
/**
* @param {!FileEntry} fileEntry
@@ -319,7 +319,7 @@ Workspace.IsolatedFileSystem = class {
* @param {function(?string)} callback
*/
requestFileContent(path, callback) {
- this._domFileSystem.root.getFile(path, null, fileEntryLoaded.bind(this), errorHandler.bind(this));
+ this._domFileSystem.root.getFile(path, undefined, fileEntryLoaded.bind(this), errorHandler.bind(this));
/**
* @param {!FileEntry} entry
@@ -427,7 +427,7 @@ Workspace.IsolatedFileSystem = class {
var fileEntry;
var dirEntry;
- this._domFileSystem.root.getFile(path, null, fileEntryLoaded.bind(this), errorHandler.bind(this));
+ this._domFileSystem.root.getFile(path, undefined, fileEntryLoaded.bind(this), errorHandler.bind(this));
/**
* @param {!FileEntry} entry
@@ -522,7 +522,7 @@ Workspace.IsolatedFileSystem = class {
* @param {function(!Array.<!FileEntry>)} callback
*/
_requestEntries(path, callback) {
- this._domFileSystem.root.getDirectory(path, null, innerCallback.bind(this), errorHandler);
+ this._domFileSystem.root.getDirectory(path, undefined, innerCallback.bind(this), errorHandler);
/**
* @param {!DirectoryEntry} dirEntry

Powered by Google App Engine
This is Rietveld 408576698