blob: 40f54d7ca1968a2889b078e719f239a765e5d840 [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.
-->
<script>
'use strict';
tr.exportTo('perf_insights.r', function() {
function ProgressReporter() {
}
ProgressReporter.prototype = {
willRun: function(run_info) {
},
didAddValue: function(value) {
},
didRun: function(run_info, run_failed) {
},
didFinishAllRuns: function(results) {
}
}
return {
ProgressReporter: ProgressReporter
}
});
</script>