Index: extensions/browser/extension_prefs.h |
diff --git a/extensions/browser/extension_prefs.h b/extensions/browser/extension_prefs.h |
index c6066c3f0aebac4a885e395999b1b9e8aa33509f..a9e86378ccaf06e82bf06bd07f851ee4bee8689b 100644 |
--- a/extensions/browser/extension_prefs.h |
+++ b/extensions/browser/extension_prefs.h |
@@ -331,6 +331,13 @@ class ExtensionPrefs : public ExtensionScopedPrefs, public KeyedService { |
void SetNtpOverriddenBubbleBeenAcknowledged(const std::string& extension_id, |
bool value); |
+ // Whether the user has been notified about extension with |extension_id| |
+ // overriding the proxy. |
+ bool HasProxyOverriddenBubbleBeenAcknowledged( |
Devlin
2014/05/20 17:26:31
There was an effort awhile back to try and make Ex
Finnur
2014/05/21 16:30:32
Yeah, I've been pondering something along the same
|
+ const std::string& extension_id); |
+ void SetProxyOverriddenBubbleBeenAcknowledged(const std::string& extension_id, |
+ bool value); |
+ |
// Returns true if the extension notification code has already run for the |
// first time for this profile. Currently we use this flag to mean that any |
// extensions that would trigger notifications should get silently |