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

Side by Side Diff: chrome/browser/resources/policy.html

Issue 2931243002: Unframe chrome://extensions as it's the last (and only) uber item (Closed)
Patch Set: devlin Created 3 years, 6 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 i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, user-scalable=no"> 5 <meta name="viewport" content="width=device-width, user-scalable=no">
6 <title i18n-content="title"></title> 6 <title i18n-content="title"></title>
7 7
8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
9 <link rel="stylesheet" href="uber/uber_shared.css"> 9 <link rel="stylesheet" href="uber/uber_shared.css">
10 <link rel="stylesheet" href="chrome://policy/policy.css"> 10 <link rel="stylesheet" href="chrome://policy/policy.css">
11 11
12 <script src="chrome://resources/js/action_link.js"></script> 12 <script src="chrome://resources/js/action_link.js"></script>
13 <script src="chrome://resources/js/cr.js"></script> 13 <script src="chrome://resources/js/cr.js"></script>
14 <script src="chrome://resources/js/cr/ui.js"></script> 14 <script src="chrome://resources/js/cr/ui.js"></script>
15 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> 15 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
16 <script src="chrome://resources/js/load_time_data.js"></script> 16 <script src="chrome://resources/js/load_time_data.js"></script>
17 <script src="chrome://resources/js/util.js"></script> 17 <script src="chrome://resources/js/util.js"></script>
18 <script src="chrome://policy/uber_utils.js"></script>
19 </head> 18 </head>
20 19
21 <body class="uber-frame"> 20 <body>
22 <div id="filter-overlay" class="page"> 21 <div id="filter-overlay" class="page">
23 <header> 22 <header>
24 <input id="filter" class="search-field-container" type="search" 23 <input id="filter" class="search-field-container" type="search"
25 i18n-values="placeholder:filterPlaceholder; 24 i18n-values="placeholder:filterPlaceholder;
26 aria-label:filterPlaceholder" incremental> 25 aria-label:filterPlaceholder" incremental>
27 </input> 26 </input>
28 </header> 27 </header>
29 </div> 28 </div>
30 <div class="page"> 29 <div class="page">
31 <header> 30 <header>
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 </tr> 123 </tr>
125 </tbody> 124 </tbody>
126 </table> 125 </table>
127 </div> 126 </div>
128 </body> 127 </body>
129 128
130 <script src="chrome://policy/strings.js"></script> 129 <script src="chrome://policy/strings.js"></script>
131 <script src="chrome://resources/js/i18n_template.js"></script> 130 <script src="chrome://resources/js/i18n_template.js"></script>
132 <script src="chrome://policy/policy.js"></script> 131 <script src="chrome://policy/policy.js"></script>
133 </html> 132 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698