blob: 220510c8952bc86af9474a90673c591eb6041eda [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.v', 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>