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

Unified Diff: chrome/browser/resources/extensions/extension_list.js

Issue 780773002: Fix some closure compilation issues 8n order to update compiler.jar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: roll back *.jar Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/extensions/extension_error.js ('k') | chrome/browser/resources/ntp4/dot_list.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/extensions/extension_list.js
diff --git a/chrome/browser/resources/extensions/extension_list.js b/chrome/browser/resources/extensions/extension_list.js
index 39f1eeefae7fe8b36bf63b8271af5a85018244b4..bdbe040c25eabcdc63011fbaeed543d956ae7871 100644
--- a/chrome/browser/resources/extensions/extension_list.js
+++ b/chrome/browser/resources/extensions/extension_list.js
@@ -103,7 +103,6 @@ cr.define('options', function() {
*/
optionsShown_: false,
- /** @override */
decorate: function() {
this.textContent = '';
@@ -370,7 +369,7 @@ cr.define('options', function() {
var indicator = new cr.ui.ControlledIndicator();
indicator.classList.add('controlled-extension-indicator');
indicator.setAttribute('controlled-by', 'policy');
- indicator.setAttribute('textpolicy', extension.policyText);
+ indicator.setAttribute('textpolicy', extension.policyText || '');
node.querySelector('.enable-controls').appendChild(indicator);
}
« no previous file with comments | « chrome/browser/resources/extensions/extension_error.js ('k') | chrome/browser/resources/ntp4/dot_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698