blob: 9f934af5bc9228cd9bd2bb048a202047834c4eec [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
window.addEventListener('load', function() {
downloads.Manager.onLoad().then(function() {
requestIdleCallback(function() {
chrome.send('metricsHandler:recordTime', [
'Download.ResultsRenderedTime',
window.performance.now()
]);
document.fonts.load('bold 12px Roboto');
});
});
});