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

Side by Side Diff: chrome/browser/resources/apps_debugger/main.html

Issue 12693022: Added separate tabs for apps / extensions in dev_tools app. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <!-- 3 <!--
4 4
5 Copyright (c) 2012 The Chromium Authors. All rights reserved. 5 Copyright (c) 2012 The Chromium Authors. All rights reserved.
6 Use of this source code is governed by a BSD-style license that can be 6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file. 7 found in the LICENSE file.
8 8 ii
Dan Beam 2013/03/20 19:05:30 ^ remove
Gaurav 2013/03/29 21:14:26 Done.
9 --> 9 -->
10 <head> 10 <head>
11 <meta charset="utf-8"> 11 <meta charset="utf-8">
12 <link rel="stylesheet" href="css/items.css"> 12 <link rel="stylesheet" href="css/items.css">
13 <link rel="stylesheet" href="../../../../ui/webui/resources/css/chrome_share d.css"> 13 <link rel="stylesheet" href="../../../../ui/webui/resources/css/chrome_share d.css">
14 <link rel="stylesheet" href="css/pack_item_overlay.css"> 14 <link rel="stylesheet" href="css/pack_item_overlay.css">
15 <link rel="stylesheet" href="css/permissions_overlay.css"> 15 <link rel="stylesheet" href="css/permissions_overlay.css">
16 <link rel="stylesheet" href="../../../../ui/webui/resources/css/alert_overla y.css"> 16 <link rel="stylesheet" href="../../../../ui/webui/resources/css/alert_overla y.css">
17 <link rel="stylesheet" href="../../../../ui/webui/resources/css/tabs.css">
17 <link rel="stylesheet" href="../../../../ui/webui/resources/css/overlay.css" > 18 <link rel="stylesheet" href="../../../../ui/webui/resources/css/overlay.css" >
18 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css"> 19 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css">
19 <link rel="stylesheet" href="../uber/uber_shared.css"> 20 <link rel="stylesheet" href="../uber/uber_shared.css">
20 21
21 <script src="js/main_scripts.js"></script> 22 <script src="js/main_scripts.js"></script>
22 </head> 23 </head>
23 <body> 24 <body>
24 <div id="overlay" class="overlay" hidden> 25 <div id="overlay" class="overlay" hidden>
25 <include src="pack_item_overlay.html"> 26 <include src="pack_item_overlay.html">
26 <include src="permissions_overlay.html"> 27 <include src="permissions_overlay.html">
27 <include src="../../../../ui/webui/resources/html/alert_overlay.html"> 28 <include src="../../../../ui/webui/resources/html/alert_overlay.html">
28 </div> 29 </div>
29 <hr>
30 <div class="page" id="extension-settings"> 30 <div class="page" id="extension-settings">
31 <hr>
31 <h1 i18n-content="appsDevtoolTitle"></h1> 32 <h1 i18n-content="appsDevtoolTitle"></h1>
32 <div id="developer-controls"> 33 <tabbox id="tabbox">
Dan Beam 2013/03/20 19:05:30 ^ is this the standard tab element naming?
Gaurav 2013/03/29 21:14:26 Not sure, it is used in some code. Changing it to
33 <hr> 34 <tabs id="tabs">
34 <button id="load-unpacked" 35 <tab> Apps</tab>
35 i18n-content="appsDevtoolLoadUnpackedButton"></button> 36 <tab> Extensions </tab>
Dan Beam 2013/03/20 19:05:30 remove spaces, where's translations?
Gaurav 2013/03/29 21:14:26 Done.
36 <button id="pack-item" 37 </tabs>
37 i18n-content="appsDevtoolPackButton"></button> 38 <div id="developer-controls">
38 <button id = "update-items-now" 39 <button id="load-unpacked"
39 i18n-content="appsDevtoolUpdateButton"></button> 40 i18n-content="appsDevtoolLoadUnpackedButton"></button>
40 <input id="search" type="text" placeholder="type to search" 41 <button id="pack-item"
41 spellcheck="false"> 42 i18n-content="appsDevtoolPackButton"></button>
42 <hr> 43 <button id = "update-items-now"
43 </div> 44 i18n-content="appsDevtoolUpdateButton"></button>
44 <div id="items"></div> 45 <input id="search" type="text" placeholder="type to search"
Dan Beam 2013/03/20 19:05:30 translations? this will conflict with your other p
Gaurav 2013/03/29 21:14:26 Done.
45 <div id="extension-settings-list" class="empty-extension-list"></div> 46 spellcheck="false">
46 <div id="no-extensions"> 47 <hr>
47 <span id="no-extensions-message" 48 </div>
48 i18n-content="appsDevtoolNoItems"></span> 49 <tabpanels id="tabpanels">
49 </div> 50 <!-- Apps Tab -->
51 <tabpanel id="apps-tab">
52 <div id="app-settings-list" class="empty-extension-list">
53 </div>
54 <div id="no-apps">
55 <span id="no-apps-message"
56 i18n-content="appsDevtoolNoApps"></span>
57 </div>
58 </tabpanel>
59 <!-- Extensions Tab -->
60 <tabpanel id="extensions-tab">
61 <div id="extension-settings-list" class="empty-extension-list">
62 </div>
63 <div id="no-extensions">
64 <span id="no-extensions-message"
65 i18n-content="appsDevtoolNoExtensions"></span>
66 </div>
67 </tabpanel>
68 </tabpanels>
69 </tabbox>
50 </div> 70 </div>
51 <div id="template-collection" hidden> 71 <div id="template-collection" hidden>
52 <div class="extension-list-item-wrapper"> 72 <div class="extension-list-item-wrapper">
53 <div class="extension-list-item"> 73 <div class="extension-list-item">
54 <div class="extension-details"> 74 <div class="extension-details">
55 <div> 75 <div>
56 <span class="extension-title"></span> 76 <span class="extension-title"></span>
57 <span class="extension-version"></span> 77 <span class="extension-version"></span>
58 <span class="extension-disable-reason"></span> 78 <span class="extension-disable-reason"></span>
59 </div> 79 </div>
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 </label> 146 </label>
127 <span class="location-text"></span> 147 <span class="location-text"></span>
128 </div> 148 </div>
129 </div> 149 </div>
130 </div> 150 </div>
131 </div> 151 </div>
132 <include src="../../../../ui/webui/resources/html/trash.html"> 152 <include src="../../../../ui/webui/resources/html/trash.html">
133 </div> 153 </div>
134 </body> 154 </body>
135 </html> 155 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698