| Index: chrome/browser/extensions/api/messaging/message_service.h
|
| diff --git a/chrome/browser/extensions/api/messaging/message_service.h b/chrome/browser/extensions/api/messaging/message_service.h
|
| index 23bf7e87ca9463149b14c9b06d80685be7fd111c..6dcde00c9f86060846fa5c4145a157e25a1eaa60 100644
|
| --- a/chrome/browser/extensions/api/messaging/message_service.h
|
| +++ b/chrome/browser/extensions/api/messaging/message_service.h
|
| @@ -119,7 +119,7 @@ class MessageService : public BrowserContextKeyedAPI,
|
| static void AllocatePortIdPair(int* port1, int* port2);
|
|
|
| explicit MessageService(content::BrowserContext* context);
|
| - virtual ~MessageService();
|
| + ~MessageService() override;
|
|
|
| // BrowserContextKeyedAPI implementation.
|
| static BrowserContextKeyedAPIFactory<MessageService>* GetFactoryInstance();
|
| @@ -196,9 +196,9 @@ class MessageService : public BrowserContextKeyedAPI,
|
| void AddChannel(MessageChannel* channel, int receiver_port_id);
|
|
|
| // content::NotificationObserver interface.
|
| - 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;
|
|
|
| // A process that might be in our list of channels has closed.
|
| void OnProcessClosed(content::RenderProcessHost* process);
|
|
|