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

Unified Diff: Source/devtools/front_end/resources/IndexedDBViews.js

Issue 318573002: DevTools: Fix paging in indexeddb inspection support (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/resources/IndexedDBViews.js
diff --git a/Source/devtools/front_end/resources/IndexedDBViews.js b/Source/devtools/front_end/resources/IndexedDBViews.js
index 9041a4cf586520f48fb1eff6d1d8b115fa4331e4..9dfda5ac79d3ec59db51eeb3c5620cdf28513818 100644
--- a/Source/devtools/front_end/resources/IndexedDBViews.js
+++ b/Source/devtools/front_end/resources/IndexedDBViews.js
@@ -363,11 +363,6 @@ WebInspector.IDBDataView.prototype = {
clear: function()
{
this._dataGrid.rootNode().removeChildren();
- for (var i = 0; i < this._entries.length; ++i) {
- this._entries[i].key.release();
- this._entries[i].primaryKey.release();
- this._entries[i].value.release();
- }
this._entries = [];
},
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698