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

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

Issue 1348903007: Revert of Add source column to chrome://policy showing the origins of policies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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>
105 <td class="name-column"> 102 <td class="name-column">
106 <div class="name elide"></div> 103 <div class="name elide"></div>
107 </td> 104 </td>
108 <td class="value-column"> 105 <td class="value-column">
109 <div class="value-container"> 106 <div class="value-container">
110 <span class="value"></span> 107 <span class="value"></span>
111 <a is="action-link" class="toggle-expanded-value"></a> 108 <a is="action-link" class="toggle-expanded-value"></a>
112 </div> 109 </div>
113 </td> 110 </td>
114 <td class="status-column"> 111 <td class="status-column">
115 <div class="status elide"></div> 112 <div class="status elide"></div>
116 </td> 113 </td>
117 </tr> 114 </tr>
118 <tr class="expanded-value-container"> 115 <tr class="expanded-value-container">
119 <td class="expanded-value" colspan=5></td> 116 <td class="expanded-value" colspan=5></td>
120 </tr> 117 </tr>
121 </tbody> 118 </tbody>
122 </table> 119 </table>
123 </div> 120 </div>
124 </body> 121 </body>
125 122
126 <script src="chrome://policy/strings.js"></script> 123 <script src="chrome://policy/strings.js"></script>
127 <script src="chrome://resources/js/i18n_template.js"></script> 124 <script src="chrome://resources/js/i18n_template.js"></script>
128 <script src="chrome://policy/policy.js"></script> 125 <script src="chrome://policy/policy.js"></script>
129 </html> 126 </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