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

Unified Diff: chrome/browser/resources/tracking.html

Issue 8520016: Complete the rename from about:tracking2 --> about:profiler by changing the implementation code t... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: try synching again... Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/profiler.js ('k') | chrome/browser/resources/tracking.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/tracking.html
===================================================================
--- chrome/browser/resources/tracking.html (revision 110153)
+++ chrome/browser/resources/tracking.html (working copy)
@@ -1,112 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
-<meta charset="utf-8">
-<script src="tracking.js"></script>
-<script src="chrome://resources/js/util.js"></script>
-
-<style>
-
-body {
- font-family: sans-serif;
- font-size: 80%;
-}
-
-/*
- * The following styles are for a TABLE that uses a thin collapsed border, and
- * has a blue heading. When you hover over rows, they turn yellow.
- */
-table.results-table {
- border-collapse:collapse;
-}
-
-table.results-table,
-.results-table th,
-.results-table td {
- border: 1px solid #777;
- padding-right: 4px;
- padding-left: 4px;
-}
-
-.results-table th {
- background: rgb(224,236,255);
-}
-
-.results-table tbody tr:hover {
- background-color:#ffb;
-}
-
-/*
- * Make the column headers change the mouse to a "hand" cursor, sine they are
- * clickable.
- */
-.results-table th {
- cursor: pointer;
-}
-
-/*
- * This is row which displays aggregate totals for each column.
- */
-.results-table .aggregator-row {
- background: #FFCC99;
-}
-
-/*---------------------------------------------------------------------------*/
-
-/*
- * When grouping data, the table for each bucket is wrapped in a DIV with this
- * class. Used to add a bit of spacing between groups.
- */
-.group-container {
- margin-top: 2ex;
- margin-bottom: 2ex;
-}
-
-/*
- * The title for each group is enclosed in a DIV of the following class.
- */
-.group-title-container {
- font-size: 140%;
- margin-bottom: 1ex;
-}
-
-/* Pseudo-link which toggles display of columns checkboxes */
-#edit-columns-link {
- color: blue;
- cursor: pointer;
- text-decoration: underline;
-}
-
-</style>
-</head>
-<body>
- <table width=100%>
- <tr>
- <td>
- <b>Group by: </b> <span id=group-by-container></span>
- <b>Sort by: </b> <span id=sort-by-container></span>
- </td>
- <td align=right>
- <a id=edit-columns-link>[Edit columns]</a>
- <input type='search' incremental id='filter-search' />
- </td>
- </tr>
- <tr id=edit-columns-row style='display:none'>
- <td colspan=2>
- <div>
- <b>Merge: </b><span id=column-merge-toggles-container></span>
- <input type=checkbox id='merge-similar-threads-checkbox' checked/>
- Merge similar threads.
- </div>
- <div>
- <b>Show: </b><span id=column-toggles-container></span>
- </div>
- </td>
- </tr>
- </table>
-
- <hr/>
-
- <div id='results-div'></div>
-</body>
-</html>
« no previous file with comments | « chrome/browser/resources/profiler.js ('k') | chrome/browser/resources/tracking.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698