| Index: chrome/test/base/extension_load_waiter_one_shot.h
|
| diff --git a/chrome/test/base/extension_load_waiter_one_shot.h b/chrome/test/base/extension_load_waiter_one_shot.h
|
| index 15cae651a97b8fad4600d65d82647af8887f59d0..47d22d680eb47132a546019c85d2d542e220db1a 100644
|
| --- a/chrome/test/base/extension_load_waiter_one_shot.h
|
| +++ b/chrome/test/base/extension_load_waiter_one_shot.h
|
| @@ -19,16 +19,16 @@
|
| class ExtensionLoadWaiterOneShot : public content::NotificationObserver {
|
| public:
|
| ExtensionLoadWaiterOneShot();
|
| - ~ExtensionLoadWaiterOneShot() override;
|
| + virtual ~ExtensionLoadWaiterOneShot();
|
|
|
| // Waits for extension with |extension_id| to load. The id should be a pointer
|
| // to a static char array.
|
| void WaitForExtension(const char* extension_id, const base::Closure& load_cb);
|
|
|
| // content::NotificationObserver overrides.
|
| - void Observe(int type,
|
| - const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) override;
|
| + virtual void Observe(int type,
|
| + const content::NotificationSource& source,
|
| + const content::NotificationDetails& details) override;
|
|
|
| // Get the browser context associated with the loaded extension. Returns
|
| // NULL if |WaitForExtension| was not previously called.
|
|
|