Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: tracing/tracing_examples/deep_reports.html

Issue 2267503002: Import polymer in a single place and remove d3 hacks (Closed) Base URL: https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <!-- 3 <!--
4 Copyright (c) 2015 The Chromium Authors. All rights reserved. 4 Copyright (c) 2015 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <head> 8 <head>
9 <title>Deep insights via Bulk Trace Analysis</title> 9 <title>Deep insights via Bulk Trace Analysis</title>
10 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 10 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
11 11
12 <script src="/components/webcomponentsjs/webcomponents.js"></script> 12 <link rel="import" href="/tracing/ui/base/base.html" data-suppress-import-order>
13 13
14 <link rel="import" href="/components/polymer/polymer.html"> 14 <link rel="import" href="/tracing/ui/extras/deep_reports/html_results.html">
15 15 <link rel="import" href="/tracing/ui/extras/deep_reports/main.html">
16 <link rel="import" href="/tracing/ui/extras/full_config.html">
16 <link rel="import" href="/tracing/ui/timeline_view.html"> 17 <link rel="import" href="/tracing/ui/timeline_view.html">
17 <link rel="import" href="/tracing/ui/extras/full_config.html">
18
19 <link rel="import" href="/tracing/ui/extras/deep_reports/main.html">
20 <link rel="import" href="/tracing/ui/extras/deep_reports/html_results.html">
21 18
22 <style> 19 <style>
23 body { 20 body {
24 font-family: sans-serif; 21 font-family: sans-serif;
25 } 22 }
26 </style> 23 </style>
27 </head> 24 </head>
28 <body> 25 <body>
29 <select id="trace-dir"></select> 26 <select id="trace-dir"></select>
30 <tr-ui-e-deep-reports-html-results id="results"> 27 <tr-ui-e-deep-reports-html-results id="results">
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 tr.ui.e.deep_reports.main(results, filesInDir).then( 119 tr.ui.e.deep_reports.main(results, filesInDir).then(
123 function success() { 120 function success() {
124 }, 121 },
125 function error(err) { 122 function error(err) {
126 tr.showPanic('Error', err); 123 tr.showPanic('Error', err);
127 }); 124 });
128 } 125 }
129 </script> 126 </script>
130 </body> 127 </body>
131 </html> 128 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698