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

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

Issue 15810003: App Developer Tools: Implemented separate tabs for unpacked apps and extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@242747-appdevtools-ux
Patch Set: Feedback from grv. Created 7 years, 7 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 -->
9 <head> 9 <head>
10 <meta charset="utf-8"> 10 <meta charset="utf-8">
(...skipping 24 matching lines...) Expand all
35 <button id="update-items-now" 35 <button id="update-items-now"
36 i18n-content="appsDevtoolUpdateButton"> 36 i18n-content="appsDevtoolUpdateButton">
37 </button> 37 </button>
38 <h1 id="header-title" i18n-content="appsDevtoolTitle"></h1> 38 <h1 id="header-title" i18n-content="appsDevtoolTitle"></h1>
39 <input id="search" type="text" 39 <input id="search" type="text"
40 i18n-values=".placeholder:appsDevtoolSearch" spellcheck="false" 40 i18n-values=".placeholder:appsDevtoolSearch" spellcheck="false"
41 placeholder="Search"> 41 placeholder="Search">
42 </div> 42 </div>
43 <div id="tabs-header-container"> 43 <div id="tabs-header-container">
44 <tabs id="tabs" tabindex="0"> 44 <tabs id="tabs" tabindex="0">
45 <tab i18n-content="appsDevtoolUnpacked"></tab>
45 <tab i18n-content="appsDevtoolApps"></tab> 46 <tab i18n-content="appsDevtoolApps"></tab>
46 <tab i18n-content="appsDevtoolExtensions"></tab> 47 <tab i18n-content="appsDevtoolExtensions"></tab>
47 </tabs> 48 </tabs>
48 </div> 49 </div>
49 <div id="header-bottom-gradient"> 50 <div id="header-bottom-gradient">
50 </div> 51 </div>
51 </div> <!-- #header --> 52 </div> <!-- #header -->
52 <tabpanels id="tab-panels"> 53 <tabpanels id="tab-panels">
54 <!-- Unpacked -->
55 <tabpanel id="unpacked-tab">
56 <div id="unpacked-list" class="empty-extension-list">
Dan Beam 2013/05/23 19:57:30 nit: <div id="unpacked-list" class="empty-extensio
dvh 2013/05/23 20:26:28 Done.
57 </div>
58 <div id="no-unpacked">
59 <span id="no-unpacked-message"
60 i18n-content="appsDevtoolNoUnpacked"></span>
61 </div>
62 </tabpanel>
53 <!-- Apps Tab --> 63 <!-- Apps Tab -->
54 <tabpanel id="apps-tab"> 64 <tabpanel id="packed-apps-tab">
55 <div id="app-settings-list" class="empty-extension-list"> 65 <div id="packed-app-list" class="empty-extension-list">
56 </div> 66 </div>
57 <div id="no-apps"> 67 <div id="no-apps">
58 <span id="no-apps-message" 68 <span id="no-apps-message"
59 i18n-content="appsDevtoolNoApps"></span> 69 i18n-content="appsDevtoolNoApps"></span>
60 </div> 70 </div>
61 </tabpanel> 71 </tabpanel>
62 <!-- Extensions Tab --> 72 <!-- Extensions Tab -->
63 <tabpanel id="extensions-tab"> 73 <tabpanel id="packed-extensions-tab">
64 <div id="extension-settings-list" class="empty-extension-list"> 74 <div id="packed-extension-list" class="empty-extension-list">
65 </div> 75 </div>
66 <div id="no-extensions"> 76 <div id="no-extensions">
67 <span id="no-extensions-message" 77 <span id="no-extensions-message"
68 i18n-content="appsDevtoolNoExtensions"></span> 78 i18n-content="appsDevtoolNoExtensions"></span>
69 </div> 79 </div>
70 </tabpanel> 80 </tabpanel>
71 </tabpanels> 81 </tabpanels>
72 </tabbox> 82 </tabbox>
73 </div> 83 </div>
74 <div id="template-collection" hidden> 84 <div id="template-collection" hidden>
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 </label> 159 </label>
150 <span class="location-text"></span> 160 <span class="location-text"></span>
151 </div> 161 </div>
152 </div> 162 </div>
153 </div> 163 </div>
154 </div> 164 </div>
155 <include src="../../../../ui/webui/resources/html/trash.html"> 165 <include src="../../../../ui/webui/resources/html/trash.html">
156 </div> 166 </div>
157 </body> 167 </body>
158 </html> 168 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698