Merge "Simplify GrReporting.appStarted() to use this.now()"

This commit is contained in:
Ben Rohlfs 2019-03-19 12:06:06 +00:00 committed by Gerrit Code Review
commit 1656bd9838
2 changed files with 3 additions and 5 deletions

View File

@ -234,10 +234,8 @@
* User-perceived app start time, should be reported when the app is ready.
*/
appStarted(hidden) {
const startTime =
new Date().getTime() - this.performanceTiming.navigationStart;
this.reporter(TIMING.TYPE, TIMING.CATEGORY_UI_LATENCY,
TIMING.APP_STARTED, startTime);
TIMING.APP_STARTED, this.now());
if (hidden) {
this.reporter(PAGE_VISIBILITY.TYPE, PAGE_VISIBILITY.CATEGORY,
PAGE_VISIBILITY.STARTED_HIDDEN);

View File

@ -61,11 +61,11 @@ limitations under the License.
});
test('appStarted', () => {
sandbox.stub(element, 'now').returns(42);
element.appStarted(true);
assert.isTrue(
element.reporter.calledWithExactly(
'timing-report', 'UI Latency', 'App Started',
NOW_TIME - fakePerformance.navigationStart
'timing-report', 'UI Latency', 'App Started', 42
));
assert.isTrue(
element.reporter.calledWithExactly(