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

Side by Side Diff: chrome/browser/resources/gpu/index.html

Issue 5228004: Switch the about:gpu implementation from an about handler to dom_ui.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
arv (Not doing code reviews) 2010/11/24 19:07:38 missing doctype I'm sure you do not want to use q
nduca 2010/12/03 21:32:50 Done.
2 <!--
3 Copyright (c) 2010 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <head>
8 <link rel="stylesheet" href="main.css">
9 <script src="util.js"></script>
10 <script src="view.js"></script>
11 <script src="tabswitcherview.js"></script>
12 <script src="infoview.js"></script>
13 <script src="main.js"></script>
14 </head>
15 <body onload="onLoaded()">
16
17 <!-- Tab switcher for main categories. -->
18 <div id=categoryTabHandles>
arv (Not doing code reviews) 2010/11/24 19:07:38 ids should be dash separated id="category-tab-han
nduca 2010/12/03 21:32:50 Done.
19 <ul>
20 <li><a href="#info" id=infoTab>GPU Info</a></li>
21 </ul>
22 <div style="clear: both;"></div>
arv (Not doing code reviews) 2010/11/24 19:07:38 Why? floats are often not what you want
nduca 2010/12/03 21:32:50 Done.
23 </div>
24
25 <!-- Info Tab -->
26 <div id=infoTabContent>
27 <div id=infoText></div>
28 </div>
29
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698