blob: 5003d1baae7a01cd1ac75c86c7b4acaeb8f3c630 [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(runInfo) {
},
didAddValue: function(value) {
},
didRun: function(runInfo, run_failed) {
},
didFinishAllRuns: function(results) {
}
};
return {
ProgressReporter: ProgressReporter
};
});
</script>