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

Unified Diff: appengine_apps/chromium_status/static/profiling.html

Issue 778533003: Moved chromium_status to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years 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
Index: appengine_apps/chromium_status/static/profiling.html
diff --git a/appengine_apps/chromium_status/static/profiling.html b/appengine_apps/chromium_status/static/profiling.html
deleted file mode 100644
index 2b69c52496f4e29c1ceb545457f81a6b5f702bcd..0000000000000000000000000000000000000000
--- a/appengine_apps/chromium_status/static/profiling.html
+++ /dev/null
@@ -1,130 +0,0 @@
-<html>
-<head>
- <script src="js/common/bind.js"></script>
- <script src="js/common/date_util.js"></script>
- <script src="js/common/debug.js"></script>
- <script src="js/common/dom_util.js"></script>
- <script src="js/profiling/class_util.js"></script>
- <script src="js/profiling/data_fetcher.js"></script>
- <script src="js/profiling/entry.js"></script>
- <script src="js/profiling/list_view.js"></script>
- <script src="js/profiling/stats_view.js"></script>
- <script src="js/profiling/viewer_app.js"></script>
-
- <script>
- var gViewerApp = new ProfilingApp();
- </script>
-
- <style>
- .viewBadge {
- font-size: 110%;
- background: gray;
- padding: 5px;
- }
-
- .sortBadge {
- }
-
- table.entriesList {
- padding: 1px;
- }
-
- table.entriesList thead {
- background: lightgreen;
- }
-
- table.entriesList th {
- padding: 3px;
- }
-
- table.entriesList th:first-of-type {
- border-top-left-radius: 8px;
- }
-
- table.entriesList th:last-of-type {
- border-top-right-radius: 8px;
- }
-
- table.entriesList tr:nth-child(odd) {
- background: lightgray;
- }
-
- table.entriesList td {
- padding: 2pt;
- padding-left: 4pt;
- padding-right: 4pt;
- }
-
- .filters_container {
- }
-
- .filters_container th {
- text-align: right;
- }
-
- .dygraph {
- font-family: sans-serif;
- margin-bottom: 22px;
- padding-bottom: 12px;
- background: -webkit-gradient(linear,
- left top,
- left bottom,
- from(#fff),
- to(#eee));
- border-radius: 10px;
- }
-
- /* Must be last to take precedence. */
- .Selected {
- background: yellow;
- }
- </style>
- <title>Profiling</title>
-</head>
-
-<body>
-<h1>Profiling</h1>
-
-<div style="border: 1px solid black" id=navigation_container>
- <table width=100%>
- <tr>
- <td>
- <div id=filters_container class=filters_container></div>
- </td>
- <td align=right>
- <div id=view_selection_container></div>
- </td>
- </tr>
- </table>
-</div>
-
-<!-- ============================================================ -->
-<!-- UI widget to show when stuff is being loaded -->
-<!-- ============================================================ -->
-<div id=loading style="font-size: 200%; color: blue; padding: 10px; display:none;">Loading...</div>
-
-
-<!-- ============================================================ -->
-<!-- Spacer between time range controls and view panel -->
-<!-- ============================================================ -->
-<div style="margin: 3px;">&nbsp;</div>
-
-<!-- ============================================================ -->
-<!-- UI widget to prompt for login. -->
-<!-- ============================================================ -->
-<div id=login_container style="display:none;"></div>
-
-<!-- ============================================================ -->
-<!-- UI widget with error data. -->
-<!-- ============================================================ -->
-<div id=error_container style="display:none;"></div>
-
-<!-- ============================================================ -->
-<!-- Different views content area -->
-<!-- ============================================================ -->
-<div id=list_container style="display:none"></div>
-<div id=stats_container style="display:none"></div>
-
-<pre id=log></pre>
-</body>
-</html>
« no previous file with comments | « appengine_apps/chromium_status/static/logo.png ('k') | appengine_apps/chromium_status/static/third_party/FONTLOG.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698