| Index: chrome/browser/extensions/extension_storage_monitor.h
|
| diff --git a/chrome/browser/extensions/extension_storage_monitor.h b/chrome/browser/extensions/extension_storage_monitor.h
|
| index 37c0fd14cbaa97b3b3dc654dd66bf28ba48727ea..b6f15be0feda4fefc9a0128676bb44a8faaa6e24 100644
|
| --- a/chrome/browser/extensions/extension_storage_monitor.h
|
| +++ b/chrome/browser/extensions/extension_storage_monitor.h
|
| @@ -48,35 +48,32 @@ class ExtensionStorageMonitor : public KeyedService,
|
| };
|
|
|
| explicit ExtensionStorageMonitor(content::BrowserContext* context);
|
| - virtual ~ExtensionStorageMonitor();
|
| + ~ExtensionStorageMonitor() override;
|
|
|
| private:
|
| // 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;
|
|
|
| // ExtensionRegistryObserver overrides:
|
| - virtual void OnExtensionLoaded(content::BrowserContext* browser_context,
|
| - const Extension* extension) override;
|
| - virtual void OnExtensionUnloaded(
|
| - content::BrowserContext* browser_context,
|
| - const Extension* extension,
|
| - UnloadedExtensionInfo::Reason reason) override;
|
| - virtual void OnExtensionWillBeInstalled(
|
| - content::BrowserContext* browser_context,
|
| - const Extension* extension,
|
| - bool is_update,
|
| - bool from_ephemeral,
|
| - const std::string& old_name) override;
|
| - virtual void OnExtensionUninstalled(
|
| - content::BrowserContext* browser_context,
|
| - const Extension* extension,
|
| - extensions::UninstallReason reason) override;
|
| + void OnExtensionLoaded(content::BrowserContext* browser_context,
|
| + const Extension* extension) override;
|
| + void OnExtensionUnloaded(content::BrowserContext* browser_context,
|
| + const Extension* extension,
|
| + UnloadedExtensionInfo::Reason reason) override;
|
| + void OnExtensionWillBeInstalled(content::BrowserContext* browser_context,
|
| + const Extension* extension,
|
| + bool is_update,
|
| + bool from_ephemeral,
|
| + const std::string& old_name) override;
|
| + void OnExtensionUninstalled(content::BrowserContext* browser_context,
|
| + const Extension* extension,
|
| + extensions::UninstallReason reason) override;
|
|
|
| // Overridden from ExtensionUninstallDialog::Delegate:
|
| - virtual void ExtensionUninstallAccepted() override;
|
| - virtual void ExtensionUninstallCanceled() override;
|
| + void ExtensionUninstallAccepted() override;
|
| + void ExtensionUninstallCanceled() override;
|
|
|
| std::string GetNotificationId(const std::string& extension_id);
|
|
|
|
|