OLD | NEW |
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 Loading... |
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-settings-list" class="empty-extension-list"> |
| 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="apps-tab"> |
55 <div id="app-settings-list" class="empty-extension-list"> | 65 <div id="app-settings-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 --> |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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> |
OLD | NEW |