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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js

Issue 2747893005: [Devtools] Changed ViewportDataGrid to use DataGrid for dom operations
Patch Set: better viewportdatagrid Created 3 years, 9 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/data_grid/ViewportDataGrid.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/profiler/HeapSnapshotView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js b/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js
index 8f5c0b859620e1bd89e8dd247dd1f0d3d0ab9182..5b94b4b5eda0bdb94cd3ce771d54985f5ba882a3 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/HeapSnapshotView.js
@@ -617,7 +617,7 @@ Profiler.HeapSnapshotView = class extends UI.SimpleView {
var runtimeModel = target ? target.model(SDK.RuntimeModel) : null;
if (!row || !span || !target || !runtimeModel)
return null;
- var node = row[DataGrid.DataGrid._dataGridNodeSymbol];
+ var node = row._dataGridNode;
var objectPopoverHelper;
return {
box: span.boxInWindow(),
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/data_grid/ViewportDataGrid.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698