| Index: chrome/browser/ui/content_settings/content_setting_image_model_unittest.cc
|
| diff --git a/chrome/browser/ui/content_settings/content_setting_image_model_unittest.cc b/chrome/browser/ui/content_settings/content_setting_image_model_unittest.cc
|
| index df964cdfb7269ccb23da86a47fad24b9540d437a..18f228b57d17a227e5ea03076bfd654a2ce770dd 100644
|
| --- a/chrome/browser/ui/content_settings/content_setting_image_model_unittest.cc
|
| +++ b/chrome/browser/ui/content_settings/content_setting_image_model_unittest.cc
|
| @@ -30,15 +30,15 @@ class NotificationForwarder : public content::NotificationObserver {
|
| chrome::NOTIFICATION_WEB_CONTENT_SETTINGS_CHANGED,
|
| content::NotificationService::AllSources());
|
| }
|
| - virtual ~NotificationForwarder() {}
|
| + ~NotificationForwarder() override {}
|
|
|
| void clear() {
|
| registrar_.RemoveAll();
|
| }
|
|
|
| - 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 {
|
| if (type == chrome::NOTIFICATION_WEB_CONTENT_SETTINGS_CHANGED) {
|
| model_->UpdateFromWebContents(
|
| content::Source<content::WebContents>(source).ptr());
|
|
|