OLD | NEW |
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 Loading... |
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> |
OLD | NEW |