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

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

Issue 10103018: [WebUI] Fix chrome://plugins regression by changing template class name. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/plugins.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="pluginsTitle"></title> 5 <title i18n-content="pluginsTitle"></title>
6 <link rel="stylesheet" href="plugins.css"/> 6 <link rel="stylesheet" href="plugins.css"/>
7 <if expr="pp_ifdef('chromeos')"> 7 <if expr="pp_ifdef('chromeos')">
8 <link rel="stylesheet" 8 <link rel="stylesheet"
9 href="chrome://resources/css/chromeos/ui_account_tweaks.css"> 9 href="chrome://resources/css/chromeos/ui_account_tweaks.css">
10 </if> 10 </if>
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 i18n-content="pluginDisabled">(DISABLED)</span> 74 i18n-content="pluginDisabled">(DISABLED)</span>
75 <span jsdisplay="enabledMode == 'disabledByPolicy'" 75 <span jsdisplay="enabledMode == 'disabledByPolicy'"
76 i18n-content="pluginDisabledByPolicy">(DISABLED_BY_POLICY)</ span> 76 i18n-content="pluginDisabledByPolicy">(DISABLED_BY_POLICY)</ span>
77 <span jsdisplay="enabledMode == 'enabledByPolicy'" 77 <span jsdisplay="enabledMode == 'enabledByPolicy'"
78 i18n-content="pluginEnabledByPolicy">(ENABLED_BY_POLICY)</sp an> 78 i18n-content="pluginEnabledByPolicy">(ENABLED_BY_POLICY)</sp an>
79 <div jsdisplay="shouldDisplayPluginDescription($this)"> 79 <div jsdisplay="shouldDisplayPluginDescription($this)">
80 <span dir="ltr" jsvalues=".innerHTML:description"> 80 <span dir="ltr" jsvalues=".innerHTML:description">
81 </div> 81 </div>
82 </div> 82 </div>
83 <div jsselect="plugin_files" class="plugin-details"> 83 <div jsselect="plugin_files" class="plugin-details">
84 <div class="showInTmiMode"> 84 <div class="show-in-tmi-mode">
85 <div jsvalues= 85 <div jsvalues=
86 ".className:isPluginEnabled($this) ? 'plugin-file-enabled' : ' plugin-file-disabled'"> 86 ".className:isPluginEnabled($this) ? 'plugin-file-enabled' : ' plugin-file-disabled'">
87 <div><table><tr> 87 <div><table><tr>
88 <td class="plugin-details-label" 88 <td class="plugin-details-label"
89 i18n-content="pluginName">NAME:</td> 89 i18n-content="pluginName">NAME:</td>
90 <td><span dir="ltr" jscontent="name">NAME</span></td> 90 <td><span dir="ltr" jscontent="name">NAME</span></td>
91 </tr></table></div> 91 </tr></table></div>
92 <div><table> 92 <div><table>
93 <tr jsdisplay="shouldDisplayPluginDescription($this)"> 93 <tr jsdisplay="shouldDisplayPluginDescription($this)">
94 <td class="plugin-details-label" 94 <td class="plugin-details-label"
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 <script src="chrome://plugins/strings.js"></script> 205 <script src="chrome://plugins/strings.js"></script>
206 <script src="chrome://resources/js/cr.js"></script> 206 <script src="chrome://resources/js/cr.js"></script>
207 <script src="chrome://resources/js/i18n_template.js"></script> 207 <script src="chrome://resources/js/i18n_template.js"></script>
208 <script src="chrome://resources/js/i18n_process.js"></script> 208 <script src="chrome://resources/js/i18n_process.js"></script>
209 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 209 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
210 <if expr="pp_ifdef('chromeos')"> 210 <if expr="pp_ifdef('chromeos')">
211 <script src="chrome://resources/js/chromeos/ui_account_tweaks.js"></script> 211 <script src="chrome://resources/js/chromeos/ui_account_tweaks.js"></script>
212 </if> 212 </if>
213 </body> 213 </body>
214 </html> 214 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/plugins.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698