blob: 106adb2af4101beb530e5e9195e41026c6d78569 [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="/base/base.html">
<script>
'use strict';
tr.exportTo('tr.b.units', 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>