blob: 559c76dd35281b9cedcd2078377db5aa0b9d99be [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="/extras/rail/rail_interaction_record.html">
<script>
'use strict';
/**
* @fileoverview Base class for trace data Auditors.
*/
tr.exportTo('tr.e.rail', function() {
function IdleInteractionRecord(start, duration) {
tr.e.rail.RAILInteractionRecord.call(
this, 'Idle', 'rail_idle',
start, duration);
}
IdleInteractionRecord.prototype = {
__proto__: tr.e.rail.RAILInteractionRecord.prototype,
get normalizedUserPain() {
return 0;
},
get normalizedEfficiency() {
return 1;
}
};
return {
IdleInteractionRecord: IdleInteractionRecord
};
});
</script>