| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <!-- | 3 <!-- |
| 4 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2011 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>chrome://inspect test shell</title> | 9 <title>chrome://inspect test shell</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"> |
| 13 | |
| 14 <link rel="import" href="/components/polymer/polymer.html"> | |
| 15 <link rel="import" href="/tracing/ui/extras/about_tracing/profiling_view.html"> | 13 <link rel="import" href="/tracing/ui/extras/about_tracing/profiling_view.html"> |
| 16 | 14 |
| 17 <style> | 15 <style> |
| 18 body { | 16 body { |
| 19 margin: 0; | 17 margin: 0; |
| 20 padding: 0; | 18 padding: 0; |
| 21 width: 100%; | 19 width: 100%; |
| 22 height: 100%; | 20 height: 100%; |
| 23 display: -webkit-flex; | 21 display: -webkit-flex; |
| 24 -webkit-flex-direction: column; | 22 -webkit-flex-direction: column; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 } | 54 } |
| 57 | 55 |
| 58 var tracingControllerClient = new tr.ui.e.about_tracing.InspectorTracingCont
rollerClient(); // @suppress longLineCheck | 56 var tracingControllerClient = new tr.ui.e.about_tracing.InspectorTracingCont
rollerClient(); // @suppress longLineCheck |
| 59 profilingViewEl = new tr.ui.e.about_tracing.ProfilingView(tracingControllerC
lient); // @suppress longLineCheck | 57 profilingViewEl = new tr.ui.e.about_tracing.ProfilingView(tracingControllerC
lient); // @suppress longLineCheck |
| 60 document.body.appendChild(profilingViewEl); | 58 document.body.appendChild(profilingViewEl); |
| 61 } | 59 } |
| 62 window.addEventListener('load', onLoad); | 60 window.addEventListener('load', onLoad); |
| 63 </script> | 61 </script> |
| 64 </body> | 62 </body> |
| 65 </html> | 63 </html> |
| OLD | NEW |