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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/StylesSourceMapping.js

Issue 1763883003: [DevTools] Fix compiler errors in bindings module (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prepare-ui-module
Patch Set: Created 4 years, 10 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/bindings/StylesSourceMapping.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/StylesSourceMapping.js b/third_party/WebKit/Source/devtools/front_end/bindings/StylesSourceMapping.js
index 9aeaee651dda042fb1d2b22a91018a7d0d9d671f..56e29eaa7687bd4cc6d52cc2cd2258701348fc23 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/StylesSourceMapping.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/StylesSourceMapping.js
@@ -182,7 +182,7 @@ WebInspector.StylesSourceMapping.prototype = {
_unbindAllUISourceCodes: function()
{
- for (var styleFile of this._styleFiles.keys())
+ for (var styleFile of this._styleFiles.values())
styleFile.dispose();
this._styleFiles.clear();
this._urlToHeadersByFrameId = new Map();

Powered by Google App Engine
This is Rietveld 408576698