| Index: chrome/browser/background_application_list_model.h
|
| ===================================================================
|
| --- chrome/browser/background_application_list_model.h (revision 86725)
|
| +++ chrome/browser/background_application_list_model.h (working copy)
|
| @@ -32,12 +32,11 @@
|
| public:
|
| // Invoked when data that the model associates with the extension, such as
|
| // the Icon, has changed.
|
| - virtual void OnApplicationDataChanged(const Extension* extension,
|
| - Profile* profile);
|
| + virtual void OnApplicationDataChanged(const Extension* extension);
|
|
|
| // Invoked when the model detects a previously unknown extension and/or when
|
| // it no longer detects a previously known extension.
|
| - virtual void OnApplicationListChanged(Profile* profile);
|
| + virtual void OnApplicationListChanged();
|
|
|
| protected:
|
| virtual ~Observer();
|
| @@ -111,11 +110,11 @@
|
|
|
| // Notifies observers that some of the data associated with this background
|
| // application, e. g. the Icon, has changed.
|
| - void SendApplicationDataChangedNotifications(const Extension* extension);
|
| + void OnApplicationDataChanged(const Extension* extension);
|
|
|
| // Notifies observers that at least one background application has been added
|
| // or removed.
|
| - void SendApplicationListChangedNotifications();
|
| + void OnApplicationListChanged();
|
|
|
| // Invoked by Observe for EXTENSION_LOADED notifications.
|
| void OnExtensionLoaded(Extension* extension);
|
|
|