// Copyright (c) 2012 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. var tracingController; var profilingView; // Made global for debugging purposes only. document.addEventListener('DOMContentLoaded', function() { tracingController = new about_tracing.TracingController( chrome.send.bind(chrome)); profilingView = document.body.querySelector('#profiling-view'); ui.decorate(profilingView, about_tracing.ProfilingView); profilingView.tracingController = tracingController; });