blob: 56132f00148dec60037cbc6f3afd0fcfb382cff9 [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 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.
-->
<link rel="import" href="/tracing/extras/rail/rail_interaction_record.html">
<script>
'use strict';
/**
* @fileoverview The Load phase of RAIL.
*/
tr.exportTo('tr.e.rail', function() {
function LoadInteractionRecord(start, duration) {
tr.e.rail.RAILInteractionRecord.call(
this, 'Load', 'rail_load',
start, duration);
}
LoadInteractionRecord.prototype = {
__proto__: tr.e.rail.RAILInteractionRecord.prototype,
get normalizedUserPain() {
return 0;
}
};
return {
LoadInteractionRecord: LoadInteractionRecord
};
});
</script>