blob: 9afeb23b92c366453ded3e43c8d5ad65472fb565 [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2013 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="stylesheet" href="/extras/about_tracing/common.css">
<link rel="import" href="/extras/about_tracing/profiling_view.html">
<link rel="import" href="/extras/full_config.html">
<script>
'use strict';
tr.exportTo('tr.e.about_tracing', function() {
window.profilingView = undefined; // Made global for debugging purposes only.
document.addEventListener('DOMContentLoaded', function() {
window.profilingView = new tr.e.about_tracing.ProfilingView();
document.body.appendChild(profilingView);
});
return {};
});
</script>