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

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

Issue 11794034: Adds functionality to pack an extension / app from the app. (Closed) Base URL: http://git.chromium.org/chromium/src.git@bacha_lo
Patch Set: . Created 7 years, 10 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 --> 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
14 <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">
15 <link rel="stylesheet" href="../../../../ui/webui/resources/css/alert_overla y.css">
16 <link rel="stylesheet" href="../../../../ui/webui/resources/css/overlay.css" >
15 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css"> 17 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css">
16 <link rel="stylesheet" href="../uber/uber_shared.css"> 18 <link rel="stylesheet" href="../uber/uber_shared.css">
17 19
18 <script src="js/main_scripts.js"></script> 20 <script src="js/main_scripts.js"></script>
19 </head> 21 </head>
20 <body> 22 <body>
23 <div id="overlay" class="overlay" hidden>
24 <include src="pack_item_overlay.html">
25 <include src="../../../../ui/webui/resources/html/alert_overlay.html">
26 </div>
21 <h1 i18n-content="extensionSettingsAppsDevtool"></h1> 27 <h1 i18n-content="extensionSettingsAppsDevtool"></h1>
22 <div class="page" id="extension-settings"> 28 <div class="page" id="extension-settings">
23 <div id="developer-controls"> 29 <div id="developer-controls">
24 <button id="load-unpacked" 30 <button id="load-unpacked"
25 i18n-content="extensionSettingsLoadUnpackedButton"></button> 31 i18n-content="extensionSettingsLoadUnpackedButton"></button>
26 <button id="pack-item" disabled 32 <button id="pack-item"
27 i18n-content="extensionSettingsPackButton"></button> 33 i18n-content="extensionSettingsPackButton"></button>
28 <button id = "update-items-now" 34 <button id = "update-items-now"
29 i18n-content="extensionSettingsUpdateButton"></button> 35 i18n-content="extensionSettingsUpdateButton"></button>
30 </div> 36 </div>
31 <div id="search-container"> 37 <div id="search-container">
32 <input id="search" type="text" placeholder="type to search" 38 <input id="search" type="text" placeholder="type to search"
33 spellcheck="false"> 39 spellcheck="false">
34 </div> 40 </div>
35 <div id="items"></div> 41 <div id="items"></div>
36 <div id="extension-settings-list" class="empty-extension-list"></div> 42 <div id="extension-settings-list" class="empty-extension-list"></div>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 </label> 111 </label>
106 <span class="location-text"></span> 112 <span class="location-text"></span>
107 </div> 113 </div>
108 </div> 114 </div>
109 </div> 115 </div>
110 </div> 116 </div>
111 <include src="../../../../ui/webui/resources/html/trash.html"> 117 <include src="../../../../ui/webui/resources/html/trash.html">
112 </div> 118 </div>
113 </body> 119 </body>
114 </html> 120 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698