| 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 47d22d680eb47132a546019c85d2d542e220db1a..15cae651a97b8fad4600d65d82647af8887f59d0 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 BrowserContext;
|
| class ExtensionLoadWaiterOneShot : public content::NotificationObserver {
|
| public:
|
| ExtensionLoadWaiterOneShot();
|
| - virtual ~ExtensionLoadWaiterOneShot();
|
| + ~ExtensionLoadWaiterOneShot() override;
|
|
|
| // 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.
|
| - 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;
|
|
|
| // Get the browser context associated with the loaded extension. Returns
|
| // NULL if |WaitForExtension| was not previously called.
|
|
|