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

Side by Side Diff: tracing/tracing_examples/skia_debugger.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) 2013 The Chromium Authors. All rights reserved. 4 Copyright (c) 2013 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>Skia Debugger</title> 9 <title>Skia Debugger</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>
13
14 <link rel="import" href="/components/polymer/polymer.html">
15 <link rel="import" href="/tracing/base/base64.html"> 12 <link rel="import" href="/tracing/base/base64.html">
16 <link rel="import" href="/tracing/extras/chrome/cc/picture.html"> 13 <link rel="import" href="/tracing/extras/chrome/cc/picture.html">
14 <link rel="import" href="/tracing/ui/base/base.html">
17 <link rel="import" href="/tracing/ui/extras/chrome/cc/picture_debugger.html"> 15 <link rel="import" href="/tracing/ui/extras/chrome/cc/picture_debugger.html">
18 16
19 <script src="string_convert.js"></script> 17 <script src="string_convert.js"></script>
20 <style> 18 <style>
21 picture-ops-list-view { 19 picture-ops-list-view {
22 height: 500px; 20 height: 500px;
23 overflow-y: auto; 21 overflow-y: auto;
24 } 22 }
25 </style> 23 </style>
26 </head> 24 </head>
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 onHashChange(); 164 onHashChange();
167 } 165 }
168 }); 166 });
169 } 167 }
170 168
171 window.addEventListener('hashchange', onHashChange); 169 window.addEventListener('hashchange', onHashChange);
172 window.addEventListener('load', onLoad); 170 window.addEventListener('load', onLoad);
173 </script> 171 </script>
174 </body> 172 </body>
175 </html> 173 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698