blob: f6b6c8abe3497ae3759e6deb7b0fa20d2b9426ee [file] [log] [blame]
Chris Craik93216d02015-03-05 13:58:42 -08001<!DOCTYPE html>
2<!--
3Copyright (c) 2013 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="stylesheet" href="/extras/about_tracing/common.css">
8<link rel="import" href="/extras/about_tracing/profiling_view.html">
9<link rel="import" href="/extras/full_config.html">
10<script>
11'use strict';
12
13tv.exportTo('tv.e.about_tracing', function() {
14 window.profilingView = undefined; // Made global for debugging purposes only.
15
16 document.addEventListener('DOMContentLoaded', function() {
17 window.profilingView = new tv.e.about_tracing.ProfilingView();
18 document.body.appendChild(profilingView);
19 });
20
21 return {};
22});
23</script>