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

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

Issue 1304843004: Add source column to chrome://policy showing the origins of policies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed another test. Created 5 years, 3 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">
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 </fieldset> 92 </fieldset>
93 <table> 93 <table>
94 <tbody id="policy-template"> 94 <tbody id="policy-template">
95 <tr> 95 <tr>
96 <td class="scope-column"> 96 <td class="scope-column">
97 <div class="scope elide"></div> 97 <div class="scope elide"></div>
98 </td> 98 </td>
99 <td class="level-column"> 99 <td class="level-column">
100 <div class="level elide"></div> 100 <div class="level elide"></div>
101 </td> 101 </td>
102 <td class="source-column">
103 <div class="source elide"></div>
104 </td>
102 <td class="name-column"> 105 <td class="name-column">
103 <div class="name elide"></div> 106 <div class="name elide"></div>
104 </td> 107 </td>
105 <td class="value-column"> 108 <td class="value-column">
106 <div class="value-container"> 109 <div class="value-container">
107 <span class="value"></span> 110 <span class="value"></span>
108 <a is="action-link" class="toggle-expanded-value"></a> 111 <a is="action-link" class="toggle-expanded-value"></a>
109 </div> 112 </div>
110 </td> 113 </td>
111 <td class="status-column"> 114 <td class="status-column">
112 <div class="status elide"></div> 115 <div class="status elide"></div>
113 </td> 116 </td>
114 </tr> 117 </tr>
115 <tr class="expanded-value-container"> 118 <tr class="expanded-value-container">
116 <td class="expanded-value" colspan=5></td> 119 <td class="expanded-value" colspan=5></td>
117 </tr> 120 </tr>
118 </tbody> 121 </tbody>
119 </table> 122 </table>
120 </div> 123 </div>
121 </body> 124 </body>
122 125
123 <script src="chrome://policy/strings.js"></script> 126 <script src="chrome://policy/strings.js"></script>
124 <script src="chrome://resources/js/i18n_template.js"></script> 127 <script src="chrome://resources/js/i18n_template.js"></script>
125 <script src="chrome://policy/policy.js"></script> 128 <script src="chrome://policy/policy.js"></script>
126 </html> 129 </html>
OLDNEW
« no previous file with comments | « chrome/browser/profiles/incognito_mode_policy_handler_unittest.cc ('k') | chrome/browser/resources/policy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698