@@ -47,7 +47,6 @@ Timeline.TimelineFlameChartDataProvider = class {
47
47
this . _performanceModel = null ;
48
48
/** @type {?TimelineModel.TimelineModel } */
49
49
this . _model = null ;
50
- this . _expandedFrameBarHeight = 5 ; // Number of bars.
51
50
52
51
this . _consoleColorGenerator =
53
52
new PerfUI . FlameChart . ColorGenerator ( { min : 30 , max : 55 } , { min : 70 , max : 100 , count : 6 } , 50 , 0.7 ) ;
@@ -71,10 +70,8 @@ Timeline.TimelineFlameChartDataProvider = class {
71
70
( Object . assign ( { } , defaultGroupStyle , { padding : 2 , nestingLevel : 1 , collapsible : false } ) ) ;
72
71
this . _staticHeader = /** @type {!PerfUI.FlameChart.GroupStyle } */
73
72
( Object . assign ( { } , defaultGroupStyle , { collapsible : false } ) ) ;
74
- this . _framesHeader = /** @type {!PerfUI.FlameChart.GroupStyle } */
75
- ( Object . assign ( { } , defaultGroupStyle , { useFirstLineForOverview : true , shareHeaderLine : true } ) ) ;
76
73
this . _interactionsHeaderLevel1 = /** @type {!PerfUI.FlameChart.GroupStyle } */
77
- ( Object . assign ( { } , defaultGroupStyle , { useFirstLineForOverview : true } ) ) ;
74
+ ( Object . assign ( { useFirstLineForOverview : true } , defaultGroupStyle ) ) ;
78
75
this . _interactionsHeaderLevel2 = /** @type {!PerfUI.FlameChart.GroupStyle } */
79
76
( Object . assign ( { } , defaultGroupStyle , { padding : 2 , nestingLevel : 1 } ) ) ;
80
77
@@ -161,8 +158,6 @@ Timeline.TimelineFlameChartDataProvider = class {
161
158
this . _asyncColorByInteractionPhase = new Map ( ) ;
162
159
/** @type {!Array<!{title: string, model: !SDK.TracingModel}> } */
163
160
this . _extensionInfo = [ ] ;
164
- /** @type {!Map<!TimelineModel.TimelineFrame, ?Promise<?Image>> } */
165
- this . _frameImageCache = new Map ( ) ;
166
161
}
167
162
168
163
/**
@@ -191,6 +186,7 @@ Timeline.TimelineFlameChartDataProvider = class {
191
186
this . _timeSpan = this . _model . isEmpty ( ) ? 1000 : this . _model . maximumRecordTime ( ) - this . _minimumBoundary ;
192
187
this . _currentLevel = 0 ;
193
188
189
+ this . _appendHeader ( Common . UIString ( 'Frames' ) , this . _staticHeader ) ;
194
190
this . _appendFrameBars ( this . _performanceModel . frames ( ) ) ;
195
191
196
192
this . _appendHeader ( Common . UIString ( 'Interactions' ) , this . _interactionsHeaderLevel1 ) ;
@@ -443,18 +439,14 @@ Timeline.TimelineFlameChartDataProvider = class {
443
439
* @param {!Array.<!TimelineModel.TimelineFrame> } frames
444
440
*/
445
441
_appendFrameBars ( frames ) {
446
- var hasFilmStrtip = ! ! this . _performanceModel . filmStripModel ( ) . frames ( ) . length ;
447
- this . _framesHeader . collapsible = hasFilmStrtip ;
448
- this . _appendHeader ( Common . UIString ( 'Frames' ) , this . _framesHeader ) ;
449
- this . _frameGroup = this . _timelineData . groups . peekLast ( ) ;
450
442
var style = Timeline . TimelineUIUtils . markerStyleForFrame ( ) ;
451
443
this . _entryTypeByLevel [ this . _currentLevel ] = Timeline . TimelineFlameChartEntryType . Frame ;
452
- for ( var frame of frames ) {
444
+ for ( var i = 0 ; i < frames . length ; ++ i ) {
453
445
this . _markers . push ( new Timeline . TimelineFlameChartMarker (
454
- frame . startTime , frame . startTime - this . _model . minimumRecordTime ( ) , style ) ) ;
455
- this . _appendFrame ( frame ) ;
446
+ frames [ i ] . startTime , frames [ i ] . startTime - this . _model . minimumRecordTime ( ) , style ) ) ;
447
+ this . _appendFrame ( frames [ i ] ) ;
456
448
}
457
- this . _currentLevel += hasFilmStrtip ? this . _expandedFrameBarHeight : 1 ;
449
+ ++ this . _currentLevel ;
458
450
}
459
451
460
452
/**
@@ -557,66 +549,6 @@ Timeline.TimelineFlameChartDataProvider = class {
557
549
return '' ;
558
550
}
559
551
560
- /**
561
- * @param {number } entryIndex
562
- * @param {!CanvasRenderingContext2D } context
563
- * @param {?string } text
564
- * @param {number } barX
565
- * @param {number } barY
566
- * @param {number } barWidth
567
- * @param {number } barHeight
568
- * @return {!Promise }
569
- */
570
- async _drawFrame ( entryIndex , context , text , barX , barY , barWidth , barHeight ) {
571
- var /** @const */ hPadding = 1 ;
572
- var frame = /** @type {!TimelineModel.TimelineFrame } */ ( this . _entryData [ entryIndex ] ) ;
573
- barX += hPadding ;
574
- barWidth -= 2 * hPadding ;
575
- context . fillStyle = frame . idle ? 'white' : ( frame . hasWarnings ( ) ? '#fad1d1' : '#d7f0d1' ) ;
576
- context . fillRect ( barX , barY , barWidth , barHeight ) ;
577
-
578
- var imagePromise ;
579
- if ( this . _frameImageCache . has ( frame ) ) {
580
- imagePromise = this . _frameImageCache . get ( frame ) ;
581
- } else {
582
- var modelFrame = Timeline . TimelineUIUtils . filmStripModelFrame ( this . _performanceModel . filmStripModel ( ) , frame ) ;
583
- imagePromise = modelFrame &&
584
- modelFrame . imageDataPromise ( ) . then ( data => UI . loadImage ( data ? 'data:image/jpg;base64,' + data : '' ) ) ;
585
- this . _frameImageCache . set ( frame , imagePromise ) ;
586
- }
587
- var image = await imagePromise ;
588
- // ---------------- ASYNC ----------------
589
- var maxTextWidth = barWidth ;
590
- if ( image ) {
591
- var imageHeight = barHeight ;
592
- var imageY = barY ;
593
- if ( this . _frameGroup . expanded ) {
594
- imageHeight *= ( this . _expandedFrameBarHeight - 1 ) ;
595
- imageY += barHeight ;
596
- }
597
- var scale = imageHeight / image . naturalHeight ;
598
- var imageWidth = image . naturalWidth * scale ;
599
- if ( ! this . _frameGroup . expanded )
600
- maxTextWidth = Math . max ( 0 , barWidth - imageWidth ) ;
601
- context . save ( ) ;
602
- context . beginPath ( ) ;
603
- context . rect ( barX , imageY , barWidth , imageHeight ) ;
604
- context . clip ( ) ;
605
- context . drawImage ( image , barX + barWidth - imageWidth , imageY , imageWidth , imageHeight ) ;
606
- context . restore ( ) ;
607
- }
608
-
609
- var frameDurationText = Number . preciseMillisToString ( frame . duration , 1 ) ;
610
- var textWidth = context . measureText ( frameDurationText ) . width ;
611
- if ( textWidth <= maxTextWidth ) {
612
- var font = this . entryFont ( entryIndex ) ;
613
- if ( font )
614
- context . font = font ;
615
- context . fillStyle = this . textColor ( entryIndex ) ;
616
- context . fillText ( frameDurationText , barX + ( maxTextWidth - textWidth ) / 2 , barY + barHeight - 4 ) ;
617
- }
618
- }
619
-
620
552
/**
621
553
* @override
622
554
* @param {number } entryIndex
@@ -634,7 +566,21 @@ Timeline.TimelineFlameChartDataProvider = class {
634
566
var data = this . _entryData [ entryIndex ] ;
635
567
var type = this . _entryType ( entryIndex ) ;
636
568
if ( type === Timeline . TimelineFlameChartEntryType . Frame ) {
637
- this . _drawFrame ( entryIndex , context , text , barX , barY , barWidth , barHeight ) ;
569
+ var /** @const */ vPadding = 1 ;
570
+ var /** @const */ hPadding = 1 ;
571
+ var frame = /** {!TimelineModel.TimelineFrame} */ ( data ) ;
572
+ barX += hPadding ;
573
+ barWidth -= 2 * hPadding ;
574
+ barY += vPadding ;
575
+ barHeight -= 2 * vPadding + 1 ;
576
+ context . fillStyle = frame . idle ? 'white' : ( frame . hasWarnings ( ) ? '#fad1d1' : '#d7f0d1' ) ;
577
+ context . fillRect ( barX , barY , barWidth , barHeight ) ;
578
+ var frameDurationText = Number . preciseMillisToString ( frame . duration , 1 ) ;
579
+ var textWidth = context . measureText ( frameDurationText ) . width ;
580
+ if ( barWidth >= textWidth ) {
581
+ context . fillStyle = this . textColor ( entryIndex ) ;
582
+ context . fillText ( frameDurationText , barX + ( barWidth - textWidth ) / 2 , barY + barHeight - 3 ) ;
583
+ }
638
584
return true ;
639
585
}
640
586
0 commit comments