blob: 228fa6fff6172605916fc819f11b8bafcb2a945b [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/base/base.html">
<script>
'use strict';
tr.exportTo('pi.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>