Skip to content

Commit 2dead10

Browse files
committed
squash 'resources/unpacked/devtools' changes from adf7209..18b86b0
18b86b0 DevTools: WebSocketFrameView - Add frames display control toolbar 544b916 Revert of DevTools: Roll Lighthouse binary to 2.0.0-alpha.7 (patchset #3 id:20001 of https://codereview.chromium.org/2888263002/ ) d658f9a [DevTools] Show icon in top toolbar when Node target is available 993b27c DevTools: Roll Lighthouse binary to 2.0.0-alpha.7 Hash: aebc9bdf53754ffd360f7c54c752b046383c2d1b b0155de DevTools: Show badges instead of products in ConsoleContextSelector d5903af [Devtools][Regression] Fixed network film strip sometimes errored 123fed4 [DevTools] breakpoint manager should be ready for location from different model 47fe6ba DevTools: fix exception on heap snapshot error reporting. fe59089 DevTools: prep audits panel for Lighthouse roll a606325 [Devtools] Updated frontend version to 24 - remove products column b1a60f2 [DevTools] update decorations when there is no pending possibleBreakpoints git-subtree-dir: resources/unpacked/devtools git-subtree-split: 18b86b0
1 parent f9c8c49 commit 2dead10

21 files changed

+332
-296
lines changed

BUILD.gn

+2
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,7 @@ all_devtools_files = [
300300
"front_end/main/GCActionDelegate.js",
301301
"front_end/main/Main.js",
302302
"front_end/main/module.json",
303+
"front_end/main/nodeIcon.css",
303304
"front_end/main/remoteDebuggingTerminatedScreen.css",
304305
"front_end/main/renderingOptions.css",
305306
"front_end/main/RenderingOptions.js",
@@ -804,6 +805,7 @@ devtools_image_files = [
804805
"front_end/Images/ic_warning_black_18dp.svg",
805806
"front_end/Images/navigationControls.png",
806807
"front_end/Images/navigationControls_2x.png",
808+
"front_end/Images/nodeIcon.png",
807809
"front_end/Images/popoverArrows.png",
808810
"front_end/Images/profileGroupIcon.png",
809811
"front_end/Images/profileIcon.png",

front_end/Images/nodeIcon.png

1.63 KB
Loading

front_end/audits2/Audits2Panel.js

+14-76
Original file line numberDiff line numberDiff line change
@@ -155,12 +155,19 @@ Audits2.Audits2Panel = class extends UI.PanelWithSidebar {
155155
this._updateStatus(Common.UIString('Loading\u2026'));
156156
})
157157
.then(_ => this._protocolService.startLighthouse(this._inspectedURL, categoryIDs))
158-
.then(lighthouseResult =>
159-
this._stopAndReattach().then(() => this._buildReportUI(lighthouseResult))
160-
).catch(err => {
158+
.then(lighthouseResult => {
159+
if (lighthouseResult && lighthouseResult.fatal) {
160+
const error = new Error(lighthouseResult.message);
161+
error.stack = lighthouseResult.stack;
162+
throw error;
163+
}
164+
165+
return this._stopAndReattach().then(() => this._buildReportUI(lighthouseResult));
166+
})
167+
.catch(err => {
161168
if (err instanceof Error)
162169
this._renderBugReport(err);
163-
});
170+
});
164171
}
165172

166173
_hideDialog() {
@@ -266,6 +273,8 @@ Audits2.Audits2Panel = class extends UI.PanelWithSidebar {
266273
var title = encodeURI('title=DevTools Error: ' + err.message.substring(0, 60));
267274

268275
var qsBody = '';
276+
qsBody += '**Initial URL**: ' + this._inspectedURL + '\n';
277+
qsBody += '**Chrome Version**: ' + navigator.userAgent.match(/Chrome\/(\S+)/)[1] + '\n';
269278
qsBody += '**Error Message**: ' + err.message + '\n';
270279
qsBody += '**Stack Trace**:\n ```' + err.stack + '```';
271280
var body = '&body=' + encodeURI(qsBody);
@@ -540,7 +549,7 @@ Audits2.Audits2Panel.TreeElement = class extends UI.TreeElement {
540549
return;
541550
}
542551

543-
this._reportContainer = this._resultsView.createChild('div', 'report-container lh-vars lh-root');
552+
this._reportContainer = this._resultsView.createChild('div', 'report-container lh-vars lh-root lh-devtools');
544553

545554
var dom = new DOM(/** @type {!Document} */ (this._resultsView.ownerDocument));
546555
var detailsRenderer = new Audits2.DetailsRenderer(dom);
@@ -554,77 +563,6 @@ Audits2.Audits2Panel.TreeElement = class extends UI.TreeElement {
554563

555564
renderer.setTemplateContext(templatesDOM);
556565
renderer.renderReport(this._lighthouseResult, this._reportContainer);
557-
558-
var performanceScoreElement = this._reportContainer.querySelector('.lh-category[id=performance] .lh-score');
559-
var artifacts = this._lighthouseResult['artifacts'];
560-
if (!performanceScoreElement || !artifacts)
561-
return;
562-
var tracePass = artifacts['traces'] ? artifacts['traces']['defaultPass'] : null;
563-
if (!tracePass)
564-
return;
565-
566-
var fmp = this._lighthouseResult['audits']['first-meaningful-paint'];
567-
if (!fmp || !fmp['extendedInfo'])
568-
return;
569-
570-
var tti = this._lighthouseResult['audits']['time-to-interactive'];
571-
if (!tti || !tti['extendedInfo'])
572-
return;
573-
574-
var navStart = fmp['extendedInfo']['value']['timestamps']['navStart'];
575-
var markers = [
576-
{
577-
title: Common.UIString('First contentful paint'),
578-
value: (fmp['extendedInfo']['value']['timestamps']['fCP'] - navStart) / 1000
579-
},
580-
{
581-
title: Common.UIString('First meaningful paint'),
582-
value: (fmp['extendedInfo']['value']['timestamps']['fMP'] - navStart) / 1000
583-
},
584-
{
585-
title: Common.UIString('Time to interactive'),
586-
value: (tti['extendedInfo']['value']['timestamps']['timeToInteractive'] - navStart) / 1000
587-
},
588-
{
589-
title: Common.UIString('Visually ready'),
590-
value: (tti['extendedInfo']['value']['timestamps']['visuallyReady'] - navStart) / 1000
591-
}
592-
];
593-
594-
var timeSpan = Math.max(...markers.map(marker => marker.value));
595-
var screenshots = tracePass.traceEvents.filter(e => e.cat === 'disabled-by-default-devtools.screenshot');
596-
var timelineElement = createElementWithClass('div', 'audits2-timeline');
597-
var filmStripElement = timelineElement.createChild('div', 'audits2-filmstrip');
598-
599-
var numberOfFrames = 8;
600-
var roundToMs = 100;
601-
var timeStep = (Math.ceil(timeSpan / numberOfFrames / roundToMs)) * roundToMs;
602-
603-
for (var time = 0; time < timeSpan; time += timeStep) {
604-
var frameForTime = null;
605-
for (var e of screenshots) {
606-
if ((e.ts - navStart) / 1000 < time + timeStep)
607-
frameForTime = e.args.snapshot;
608-
}
609-
var frame = filmStripElement.createChild('div', 'frame');
610-
frame.createChild('div', 'time').textContent = Number.millisToString(time + timeStep);
611-
612-
var thumbnail = frame.createChild('div', 'thumbnail');
613-
if (frameForTime) {
614-
var img = thumbnail.createChild('img');
615-
img.src = 'data:image/jpg;base64,' + frameForTime;
616-
}
617-
}
618-
619-
for (var marker of markers) {
620-
var markerElement = timelineElement.createChild('div', 'audits2-timeline-marker');
621-
markerElement.createChild('div', 'audits2-timeline-bar').style.width =
622-
(100 * (marker.value / timeSpan) | 0) + '%';
623-
markerElement.createChild('span').textContent = Common.UIString('%s: ', marker.title);
624-
markerElement.createChild('span', 'audits2-timeline-subtitle').textContent = Number.millisToString(marker.value);
625-
}
626-
627-
performanceScoreElement.parentElement.insertBefore(timelineElement, performanceScoreElement.nextSibling);
628566
}
629567
};
630568

front_end/audits2/audits2Panel.css

-62
Original file line numberDiff line numberDiff line change
@@ -54,65 +54,3 @@
5454
overflow: auto;
5555
position: relative;
5656
}
57-
58-
.audits2-timeline {
59-
display: flex;
60-
flex-direction: column;
61-
border-top: 1px solid #ccc;
62-
border-bottom: 1px solid #ccc;
63-
padding: 5px 0;
64-
margin: 5px 0 0 68px;
65-
overflow: auto;
66-
}
67-
68-
.lh-filmstrip {
69-
display: none !important;
70-
}
71-
72-
.audits2-filmstrip {
73-
display: flex;
74-
flex-direction: row;
75-
margin-bottom: 20px;
76-
}
77-
78-
.audits2-filmstrip .frame {
79-
display: flex;
80-
flex-direction: column;
81-
align-items: center;
82-
padding: 4px;
83-
flex: none;
84-
}
85-
86-
.audits2-filmstrip .frame .thumbnail {
87-
display: flex;
88-
width: 54px;
89-
height: 100%;
90-
flex-direction: row;
91-
align-items: center;
92-
margin: 4px 0 2px;
93-
border: 2px solid transparent;
94-
box-shadow: 0 0 3px #bbb;
95-
}
96-
97-
.audits2-filmstrip .frame .thumbnail img {
98-
height: auto;
99-
width: 50px;
100-
flex: 0 0 auto;
101-
}
102-
103-
.audits2-filmstrip .frame .time {
104-
margin-top: 2px;
105-
}
106-
107-
.audits2-timeline-marker {
108-
margin: 4px 0 6px;
109-
width: calc(68px * 7);
110-
}
111-
112-
.audits2-timeline-subtitle {
113-
color: #01579B;
114-
}
115-
116-
.audits2-timeline-bar {
117-
border-top: 4px solid #03A9F4;
118-
}

front_end/audits2_worker/Audits2Service.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ var Audits2Service = class {
5656
result.artifacts = {traces: traces};
5757
return result;
5858
})
59-
.catchException(null);
59+
.catch(err => ({
60+
fatal: true,
61+
message: err.message,
62+
stack: err.stack,
63+
}));
6064
}
6165

6266
/**

front_end/bindings/BreakpointManager.js

+2
Original file line numberDiff line numberDiff line change
@@ -816,6 +816,8 @@ Bindings.BreakpointManager.ModelBreakpoint = class {
816816

817817
var debuggerLocation = uiSourceCode &&
818818
Bindings.debuggerWorkspaceBinding.uiLocationToRawLocation(uiSourceCode, lineNumber, columnNumber);
819+
if (debuggerLocation && debuggerLocation.debuggerModel !== this._debuggerModel)
820+
debuggerLocation = null;
819821
var newState;
820822
if (this._breakpoint._isRemoved || !this._breakpoint.enabled() || this._scriptDiverged()) {
821823
newState = null;

front_end/common/Settings.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -766,6 +766,14 @@ Common.VersionController = class {
766766
oldSetting.remove();
767767
}
768768

769+
_updateVersionFrom24To25() {
770+
var defaultColumns = {status: true, type: true, initiator: true, size: true, time: true};
771+
var networkLogColumnsSetting = Common.settings.createSetting('networkLogColumns', defaultColumns);
772+
var columns = networkLogColumnsSetting.get();
773+
delete columns.product;
774+
networkLogColumnsSetting.set(columns);
775+
}
776+
769777
_migrateSettingsFromLocalStorage() {
770778
// This step migrates all the settings except for the ones below into the browser profile.
771779
var localSettings = new Set([
@@ -798,7 +806,7 @@ Common.VersionController = class {
798806
};
799807

800808
Common.VersionController._currentVersionName = 'inspectorVersion';
801-
Common.VersionController.currentVersion = 24;
809+
Common.VersionController.currentVersion = 25;
802810

803811
/**
804812
* @type {!Common.Settings}

0 commit comments

Comments
 (0)