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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.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/CPUProfileView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
index 002180a9c8cf81ea9d5ef17dd734cf68f0eaed26..ab02e3f8b03d8a829c2bfc1c80ae18b6d2aff2a4 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
@@ -66,7 +66,7 @@ Profiler.CPUProfileView = class extends Profiler.ProfileView {
/**
* @override
- * @return {!UI.FlameChartDataProvider}
+ * @return {!PerfUI.FlameChartDataProvider}
*/
createFlameChartDataProvider() {
return new Profiler.CPUFlameChartDataProvider(this.profile, this._profileHeader.target());
@@ -340,7 +340,7 @@ Profiler.CPUFlameChartDataProvider = class extends Profiler.ProfileFlameChartDat
/**
* @override
- * @return {!UI.FlameChart.TimelineData}
+ * @return {!PerfUI.FlameChart.TimelineData}
*/
_calculateTimelineData() {
/** @type {!Array.<?Profiler.CPUFlameChartDataProvider.ChartEntry>} */
@@ -387,7 +387,7 @@ Profiler.CPUFlameChartDataProvider = class extends Profiler.ProfileFlameChartDat
this._maxStackDepth = maxDepth;
- this._timelineData = new UI.FlameChart.TimelineData(entryLevels, entryTotalTimes, entryStartTimes, null);
+ this._timelineData = new PerfUI.FlameChart.TimelineData(entryLevels, entryTotalTimes, entryStartTimes, null);
/** @type {!Array<!SDK.CPUProfileNode>} */
this._entryNodes = entryNodes;

Powered by Google App Engine
This is Rietveld 408576698