| Index: chrome/browser/background/background_application_list_model.h
|
| diff --git a/chrome/browser/background/background_application_list_model.h b/chrome/browser/background/background_application_list_model.h
|
| index 0a0821ed32776fe15f4e08e3b258b08b41824019..14f7d8ff3475797bfc686f81960f2d872ce7d803 100644
|
| --- a/chrome/browser/background/background_application_list_model.h
|
| +++ b/chrome/browser/background/background_application_list_model.h
|
| @@ -49,7 +49,7 @@ class BackgroundApplicationListModel : public content::NotificationObserver {
|
| // Create a new model associated with profile.
|
| explicit BackgroundApplicationListModel(Profile* profile);
|
|
|
| - virtual ~BackgroundApplicationListModel();
|
| + ~BackgroundApplicationListModel() override;
|
|
|
| // Associate observer with this model.
|
| void AddObserver(Observer* observer);
|
| @@ -116,9 +116,9 @@ class BackgroundApplicationListModel : public content::NotificationObserver {
|
| Application* FindApplication(const extensions::Extension* extension);
|
|
|
| // content::NotificationObserver implementation.
|
| - virtual void Observe(int type,
|
| - const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) override;
|
| + void Observe(int type,
|
| + const content::NotificationSource& source,
|
| + const content::NotificationDetails& details) override;
|
|
|
| // Notifies observers that some of the data associated with this background
|
| // application, e. g. the Icon, has changed.
|
|
|