diff options
Diffstat (limited to 'chrome/browser/extensions/extension_prefs.h')
-rw-r--r-- | chrome/browser/extensions/extension_prefs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/extensions/extension_prefs.h b/chrome/browser/extensions/extension_prefs.h index 39c0360..d7ead34 100644 --- a/chrome/browser/extensions/extension_prefs.h +++ b/chrome/browser/extensions/extension_prefs.h @@ -139,6 +139,12 @@ class ExtensionPrefs : public ExtensionContentSettingsStore::Observer, void SetDidExtensionEscalatePermissions(const Extension* extension, bool did_escalate); + // Getter and setters for disabled reason. + Extension::DisableReason GetDisableReason(const std::string& extension_id); + void SetDisableReason(const std::string& extension_id, + Extension::DisableReason disable_reason); + void RemoveDisableReason(const std::string& extension_id); + // Returns the version string for the currently installed extension, or // the empty string if not found. std::string GetVersionString(const std::string& extension_id); |