Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / about_tracing.html
1 <!DOCTYPE html>
2 <!--
3 Copyright (c) 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <link rel="import" href="/about_tracing/profiling_view.html">
8 <link rel="stylesheet" href="/about_tracing/common.css">
9 <script>
10 'use strict';
11
12 tv.exportTo('about_tracing', function() {
13   window.profilingView = undefined;  // Made global for debugging purposes only.
14
15   document.addEventListener('DOMContentLoaded', function() {
16     window.profilingView = new about_tracing.ProfilingView();
17     document.body.appendChild(profilingView);
18   });
19
20   return {};
21 });
22 </script>