blob: 7f9bae57a23d3b5e2823ad3207a00825d0e3bdae [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('tr.b.u', function() {
/**
* Tabular data wrapper. Simply wraps an array of items.
*/
function GenericTable(items) {
if (items !== undefined)
this.items = items;
else
this.items = [];
};
GenericTable.prototype = {
};
return {
GenericTable: GenericTable
};
});
</script>