| Index: chrome/browser/resources/settings/site_settings/site_settings_behavior.js
|
| diff --git a/chrome/browser/resources/settings/site_settings/site_settings_behavior.js b/chrome/browser/resources/settings/site_settings/site_settings_behavior.js
|
| index d810c8226962bcf129c71e40301a519caaa345d4..aab18e7a4eeb53ae892d2b6c79df47a551684742 100644
|
| --- a/chrome/browser/resources/settings/site_settings/site_settings_behavior.js
|
| +++ b/chrome/browser/resources/settings/site_settings/site_settings_behavior.js
|
| @@ -418,6 +418,17 @@ var SiteSettingsBehaviorImpl = {
|
| },
|
|
|
| /**
|
| + * Returns true if this exception is controlled by, for example, a policy or
|
| + * set by an extension.
|
| + * @param {string} source The source controlling the extension
|
| + * @return {boolean} Whether it is being controlled.
|
| + * @protected
|
| + */
|
| + isExceptionControlled_: function(source) {
|
| + return source != undefined && source != 'preference';
|
| + },
|
| +
|
| + /**
|
| * Returns the icon to use for a given site.
|
| * @param {string} site The url of the site to fetch the icon for.
|
| * @return {string} The background-image style with the favicon.
|
|
|