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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/audits2/lighthouse/renderer/report-renderer.js

Issue 2888263002: DevTools: Roll Lighthouse binary to 2.0.1-alpha.0 (Closed)
Patch Set: rebase Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 /** 1 /**
2 * Copyright 2017 Google Inc. All rights reserved. 2 * Copyright 2017 Google Inc. All rights reserved.
3 * 3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License. 5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at 6 * You may obtain a copy of the License at
7 * 7 *
8 * http://www.apache.org/licenses/LICENSE-2.0 8 * http://www.apache.org/licenses/LICENSE-2.0
9 * 9 *
10 * Unless required by applicable law or agreed to in writing, software 10 * Unless required by applicable law or agreed to in writing, software
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 /** 169 /**
170 * @typedef {{ 170 * @typedef {{
171 * id: string, 171 * id: string,
172 * weight: number, 172 * weight: number,
173 * score: number, 173 * score: number,
174 * group: string, 174 * group: string,
175 * result: { 175 * result: {
176 * rawValue: (number|undefined), 176 * rawValue: (number|undefined),
177 * description: string, 177 * description: string,
178 * informative: boolean, 178 * informative: boolean,
179 * manual: boolean,
179 * debugString: string, 180 * debugString: string,
180 * displayValue: string, 181 * displayValue: string,
181 * helpText: string, 182 * helpText: string,
182 * score: (number|boolean), 183 * score: (number|boolean),
183 * scoringMode: string, 184 * scoringMode: string,
184 * optimalValue: number, 185 * optimalValue: number,
185 * extendedInfo: Object, 186 * extendedInfo: Object,
186 * details: (!DetailsRenderer.DetailsJSON|undefined) 187 * details: (!DetailsRenderer.DetailsJSON|undefined)
187 * } 188 * }
188 * }} 189 * }}
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 * artifacts: {traces: !Object}, 221 * artifacts: {traces: !Object},
221 * reportCategories: !Array<!ReportRenderer.CategoryJSON>, 222 * reportCategories: !Array<!ReportRenderer.CategoryJSON>,
222 * reportGroups: !Object<string, !ReportRenderer.GroupJSON>, 223 * reportGroups: !Object<string, !ReportRenderer.GroupJSON>,
223 * runtimeConfig: { 224 * runtimeConfig: {
224 * blockedUrlPatterns: !Array<string>, 225 * blockedUrlPatterns: !Array<string>,
225 * environment: !Array<{description: string, enabled: boolean, name: strin g}> 226 * environment: !Array<{description: string, enabled: boolean, name: strin g}>
226 * } 227 * }
227 * }} 228 * }}
228 */ 229 */
229 ReportRenderer.ReportJSON; // eslint-disable-line no-unused-expressions 230 ReportRenderer.ReportJSON; // eslint-disable-line no-unused-expressions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698