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

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

Issue 2163093003: [DevTools] Remove Object.values and Object.isEmpty from utilities.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 53330eaf1b6d70613d5325fc1ae61ec413b39a65..d79c5ff84d10d072ff54c46515879cef000f45e1 100644
--- a/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.js
+++ b/third_party/WebKit/Source/devtools/front_end/workspace/IsolatedFileSystem.js
@@ -526,7 +526,7 @@ WebInspector.IsolatedFileSystem.prototype = {
_saveExcludedFolders: function()
{
var settingValue = this._excludedFoldersSetting.get();
- settingValue[this._path] = Array.from(this._excludedFolders.values());
+ settingValue[this._path] = this._excludedFolders.valuesArray();
this._excludedFoldersSetting.set(settingValue);
},

Powered by Google App Engine
This is Rietveld 408576698