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

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

Issue 12943010: Add native permissions dialog for apps_devtools app. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: reused the ReviewPermissions in extension_install_prompt.cc Created 7 years, 8 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 <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">
16 <link rel="stylesheet" href="../../../../ui/webui/resources/css/alert_overla y.css"> 15 <link rel="stylesheet" href="../../../../ui/webui/resources/css/alert_overla y.css">
17 <link rel="stylesheet" href="../../../../ui/webui/resources/css/overlay.css" > 16 <link rel="stylesheet" href="../../../../ui/webui/resources/css/overlay.css" >
18 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css"> 17 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css">
19 <link rel="stylesheet" href="../uber/uber_shared.css"> 18 <link rel="stylesheet" href="../uber/uber_shared.css">
20 19
21 <script src="js/main_scripts.js"></script> 20 <script src="js/main_scripts.js"></script>
22 </head> 21 </head>
23 <body> 22 <body>
24 <div id="overlay" class="overlay" hidden> 23 <div id="overlay" class="overlay" hidden>
25 <include src="pack_item_overlay.html"> 24 <include src="pack_item_overlay.html">
26 <include src="permissions_overlay.html">
27 <include src="../../../../ui/webui/resources/html/alert_overlay.html"> 25 <include src="../../../../ui/webui/resources/html/alert_overlay.html">
28 </div> 26 </div>
29 <hr> 27 <hr>
30 <div class="page" id="extension-settings"> 28 <div class="page" id="extension-settings">
31 <h1 i18n-content="appsDevtoolTitle"></h1> 29 <h1 i18n-content="appsDevtoolTitle"></h1>
32 <div id="developer-controls"> 30 <div id="developer-controls">
33 <hr> 31 <hr>
34 <button id="load-unpacked" 32 <button id="load-unpacked"
35 i18n-content="appsDevtoolLoadUnpackedButton"></button> 33 i18n-content="appsDevtoolLoadUnpackedButton"></button>
36 <button id="pack-item" 34 <button id="pack-item"
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 </label> 124 </label>
127 <span class="location-text"></span> 125 <span class="location-text"></span>
128 </div> 126 </div>
129 </div> 127 </div>
130 </div> 128 </div>
131 </div> 129 </div>
132 <include src="../../../../ui/webui/resources/html/trash.html"> 130 <include src="../../../../ui/webui/resources/html/trash.html">
133 </div> 131 </div>
134 </body> 132 </body>
135 </html> 133 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698