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

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

Issue 2623743002: DevTools: extract modules (non-extensions) (Closed)
Patch Set: rebaseline Created 3 years, 11 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/profiler/ProfileDataGrid.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
index bd6cb3fabdfb53542c3bd6a8a97f741bc4366b99..434fcef82e35c54b737f53d79bf2f8e94a9720e6 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileDataGrid.js
@@ -26,7 +26,7 @@
/**
* @unrestricted
*/
-Profiler.ProfileDataGridNode = class extends UI.DataGridNode {
+Profiler.ProfileDataGridNode = class extends DataGrid.DataGridNode {
/**
* @param {!SDK.ProfileNode} profileNode
* @param {!Profiler.ProfileDataGridTree} owningTree
@@ -208,7 +208,7 @@ Profiler.ProfileDataGridNode = class extends UI.DataGridNode {
/**
* @override
- * @param {!UI.DataGridNode} profileDataGridNode
+ * @param {!DataGrid.DataGridNode} profileDataGridNode
* @param {number} index
*/
insertChild(profileDataGridNode, index) {
@@ -220,7 +220,7 @@ Profiler.ProfileDataGridNode = class extends UI.DataGridNode {
/**
* @override
- * @param {!UI.DataGridNode} profileDataGridNode
+ * @param {!DataGrid.DataGridNode} profileDataGridNode
*/
removeChild(profileDataGridNode) {
super.removeChild(profileDataGridNode);

Powered by Google App Engine
This is Rietveld 408576698