Chromium Code Reviews| Index: chrome/browser/extensions/extension_service.h |
| =================================================================== |
| --- chrome/browser/extensions/extension_service.h (revision 107300) |
| +++ chrome/browser/extensions/extension_service.h (working copy) |
| @@ -211,6 +211,15 @@ |
| virtual void SetIsIncognitoEnabled(const std::string& extension_id, |
| bool enabled); |
| + virtual bool IsNotificationsInitialSetupDone( |
|
asargent_no_longer_on_chrome
2011/10/27 16:52:21
Let's remove this IsNotificationsInitialSetupDone
Munjal (Google)
2011/10/27 18:35:05
Done.
When I added this method, I thought it will
|
| + const std::string& extension_id) const; |
| + virtual void SetNotificationsInitialSetupDone(const std::string& extension_id, |
|
asargent_no_longer_on_chrome
2011/10/27 16:52:21
Rename suggestion:
SetAppNotificationSetupDone
Munjal (Google)
2011/10/27 18:35:05
Done.
|
| + bool value); |
| + |
| + virtual bool IsNotificationsDisabled(const std::string& extension_id) const; |
|
asargent_no_longer_on_chrome
2011/10/27 16:52:21
Let's remove this IsNotificationsDisabled method i
Munjal (Google)
2011/10/27 18:35:05
Done.
|
| + virtual void SetNotificationsDisabled(const std::string& extension_id, |
|
asargent_no_longer_on_chrome
2011/10/27 16:52:21
Rename suggestion:
SetAppNotificationDisabled
Munjal (Google)
2011/10/27 18:35:05
Done.
|
| + bool value); |
| + |
| // Returns true if the given extension can see events and data from another |
| // sub-profile (incognito to original profile, or vice versa). |
| bool CanCrossIncognito(const Extension* extension); |