blob: 500d874122d8d1af0c6e6b5031148f506e181805 [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="/ui/extras/about_tracing/common.css">
<link rel="import" href="/ui/extras/about_tracing/profiling_view.html">
<link rel="import" href="/extras/full_config.html">
<script>
'use strict';
tr.exportTo('tr.ui.e.about_tracing', function() {
window.profilingView = undefined; // Made global for debugging purposes only.
document.addEventListener('DOMContentLoaded', function() {
window.profilingView = new tr.ui.e.about_tracing.ProfilingView();
profilingView.timelineView.globalMode = true;
document.body.appendChild(profilingView);
});
return {};
});
</script>