1<!DOCTYPE html>
2<!--
3Copyright (c) 2015 The Chromium Authors. All rights reserved.
4Use of this source code is governed by a BSD-style license that can be
5found in the LICENSE file.
6-->
7<link rel="import" href="/tracing/base/base.html">
8<script>
9'use strict';
10
11tr.exportTo('tr.v', function() {
12  /**
13   * Tabular data wrapper. Simply wraps an array of items.
14   */
15  function GenericTable(items) {
16    if (items !== undefined)
17      this.items = items;
18    else
19      this.items = [];
20  };
21
22  GenericTable.prototype = {
23  };
24
25  return {
26    GenericTable: GenericTable
27  };
28});
29</script>
30