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

Side by Side Diff: chrome/browser/resources/tracing.html

Issue 10543144: Remove old tracing code now that it has moved to third_party. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/resources/tracing.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <!--
4 Copyright (c) 2010 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
7 -->
8 <head i18n-values="dir:textdirection;">
9 <style>
10 * {
11 box-sizing: border-box;
12 -webkit-user-select: none;
13 }
14
15 html, body, #main-tabs {
16 height: 100%;
17 }
18
19 body {
20 display: -webkit-box;
21 -webkit-box-orient: vertical;
22 cursor: default;
23 font-family: sans-serif;
24 padding: 0;
25 margin: 0;
26 }
27
28 #tracing-title {
29 margin: 1px;
30 }
31
32 </style>
33 <link rel="stylesheet" href="tracing/overlay.css">
34 <link rel="stylesheet" href="tracing/profiling_view.css">
35 <link rel="stylesheet" href="tracing/timeline_analysis.css">
36 <link rel="stylesheet" href="tracing/timeline_view.css">
37 <link rel="stylesheet" href="tracing/timeline.css">
38 <link rel="stylesheet" href="tracing/tracing_controller.css">
39 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
40 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
41 <script src="chrome://resources/js/cr.js"></script>
42 <script src="chrome://resources/js/cr/event_target.js"></script>
43 <script src="chrome://resources/js/cr/ui.js"></script>
44 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
45 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
46 <script src="chrome://resources/js/util.js"></script>
47 <script src="chrome://tracing/tracing.js"></script>
48 <script src="chrome://tracing/strings.js"></script>
49 </head>
50 <body>
51 <div id="profiling-view"></div>
52 <script src="chrome://resources/js/i18n_template.js"></script>
53 <script src="chrome://resources/js/i18n_process.js"></script>
54 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
55 </body>
56 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/tracing.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698