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

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

Issue 8511046: deprecate webui.css (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: undo mistake in downloads 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
Index: chrome/browser/resources/gpu_internals.html
diff --git a/chrome/browser/resources/gpu_internals.html b/chrome/browser/resources/gpu_internals.html
deleted file mode 100644
index 420e1ceb8723b50dc6a1e3943fcbbbe46d2004b5..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/gpu_internals.html
+++ /dev/null
@@ -1,74 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<!--
-Copyright (c) 2010 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-<head i18n-values="dir:textdirection;">
-<link rel="stylesheet" href="webui.css">
-<style>
-* {
- box-sizing: border-box;
- -webkit-user-select: none;
-}
-
-html, body, #main-tabs {
- height: 100%;
-}
-
-body {
- cursor: default;
- font-family: sans-serif;
- padding: 0;
- margin: 0;
-}
-
-#debug-div {
- display: -webkit-box;
- position: fixed;
- top: 0px;
- left: 50%;
- border: 1px solid red;
-}
-
-tabbox tabpanels {
- padding: 1px;
-}
-
-</style>
-<link rel="stylesheet" href="gpu_internals/info_view.css">
-<link rel="stylesheet" href="chrome://resources/css/tabs.css">
-<script src="chrome://resources/js/cr.js"></script>
-<script src="chrome://resources/js/cr/event_target.js"></script>
-<script src="chrome://resources/js/cr/ui.js"></script>
-<script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
-<script src="chrome://resources/js/cr/ui/tabs.js"></script>
-<script src="chrome://resources/js/util.js"></script>
-<script src="chrome://gpu-internals/gpu_internals.js"></script>
-<script src="chrome://gpu-internals/strings.js"></script>
-</head>
-<body>
- <div id="debug-div">
- </div>
- <!-- Tabs -->
- <tabbox id="main-tabs">
- <tabs>
- <tab>GPU Info</tab>
- <tab>Profiling</tab>
- </tabs>
- <tabpanels>
- <include src="gpu_internals/info_view.html">
- <tabpanel id="profiling-view-link">
- <div>
- Profiling view has moved to <a
- href="chrome://tracing">chrome://tracing</a>.
- </div>
- </tabpanel>
- </tabpanels>
- </tabbox>
- <script src="chrome://resources/js/i18n_template.js"></script>
- <script src="chrome://resources/js/i18n_process.js"></script>
- <script src="chrome://resources/js/jstemplate_compiled.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698