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

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: Make sure the proper patch will be applied. 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
« no previous file with comments | « chrome/browser/resources/apps_debugger/js/items_list.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
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 23 matching lines...) Expand all
34 </button> 34 </button>
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 </div> 41 </div>
42 <div id="tabs-header-container"> 42 <div id="tabs-header-container">
43 <tabs id="tabs" tabindex="0"> 43 <tabs id="tabs" tabindex="0">
44 <tab i18n-content="appsDevtoolUnpacked"></tab>
44 <tab i18n-content="appsDevtoolApps"></tab> 45 <tab i18n-content="appsDevtoolApps"></tab>
45 <tab i18n-content="appsDevtoolExtensions"></tab> 46 <tab i18n-content="appsDevtoolExtensions"></tab>
46 </tabs> 47 </tabs>
47 </div> 48 </div>
48 <div id="header-bottom-gradient"></div> 49 <div id="header-bottom-gradient"></div>
49 </div> 50 </div>
50 <tabpanels id="tab-panels"> 51 <tabpanels id="tab-panels">
52 <!-- Unpacked -->
53 <tabpanel id="unpacked-tab">
54 <div id="unpacked-list" class="empty-extension-list"></div>
55 <div id="no-unpacked">
56 <span id="no-unpacked-message"
57 i18n-content="appsDevtoolNoUnpacked"></span>
58 </div>
59 </tabpanel>
51 <!-- Apps Tab --> 60 <!-- Apps Tab -->
52 <tabpanel id="apps-tab"> 61 <tabpanel id="packed-apps-tab">
53 <div id="app-settings-list" class="empty-extension-list"> 62 <div id="packed-app-list" class="empty-extension-list"></div>
54 </div>
55 <div id="no-apps"> 63 <div id="no-apps">
56 <span id="no-apps-message" 64 <span id="no-apps-message"
57 i18n-content="appsDevtoolNoApps"></span> 65 i18n-content="appsDevtoolNoApps"></span>
58 </div> 66 </div>
59 </tabpanel> 67 </tabpanel>
60 <!-- Extensions Tab --> 68 <!-- Extensions Tab -->
61 <tabpanel id="extensions-tab"> 69 <tabpanel id="packed-extensions-tab">
62 <div id="extension-settings-list" class="empty-extension-list"> 70 <div id="packed-extension-list" class="empty-extension-list"></div>
63 </div>
64 <div id="no-extensions"> 71 <div id="no-extensions">
65 <span id="no-extensions-message" 72 <span id="no-extensions-message"
66 i18n-content="appsDevtoolNoExtensions"></span> 73 i18n-content="appsDevtoolNoExtensions"></span>
67 </div> 74 </div>
68 </tabpanel> 75 </tabpanel>
69 </tabpanels> 76 </tabpanels>
70 </tabbox> 77 </tabbox>
71 </div> 78 </div>
72 <div id="template-collection" hidden> 79 <div id="template-collection" hidden>
73 <div class="extension-list-item-wrapper"> 80 <div class="extension-list-item-wrapper">
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 </label> 154 </label>
148 <span class="location-text"></span> 155 <span class="location-text"></span>
149 </div> 156 </div>
150 </div> 157 </div>
151 </div> 158 </div>
152 </div> 159 </div>
153 <include src="../../../../ui/webui/resources/html/trash.html"> 160 <include src="../../../../ui/webui/resources/html/trash.html">
154 </div> 161 </div>
155 </body> 162 </body>
156 </html> 163 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/apps_debugger/js/items_list.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698