| Index: chrome/browser/content_settings/permission_queue_controller.h
|
| diff --git a/chrome/browser/content_settings/permission_queue_controller.h b/chrome/browser/content_settings/permission_queue_controller.h
|
| index f953128b7eb0772234a9fc2709b5cdda56f8b978..ba2dbd424e0d3fff393c9d11ca2103b7f61eb50f 100644
|
| --- a/chrome/browser/content_settings/permission_queue_controller.h
|
| +++ b/chrome/browser/content_settings/permission_queue_controller.h
|
| @@ -28,7 +28,7 @@ class PermissionQueueController : public content::NotificationObserver {
|
| typedef base::Callback<void(bool /* allowed */)> PermissionDecidedCallback;
|
|
|
| PermissionQueueController(Profile* profile, ContentSettingsType type);
|
| - virtual ~PermissionQueueController();
|
| + ~PermissionQueueController() override;
|
|
|
| // The InfoBar will be displayed immediately if the tab is not already
|
| // displaying one, otherwise it'll be queued.
|
| @@ -56,9 +56,9 @@ class PermissionQueueController : public content::NotificationObserver {
|
|
|
| protected:
|
| // content::NotificationObserver:
|
| - 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;
|
|
|
| private:
|
| class PendingInfobarRequest;
|
|
|