| Index: chrome/browser/extensions/declarative_user_script_master.h
|
| diff --git a/chrome/browser/extensions/declarative_user_script_master.h b/chrome/browser/extensions/declarative_user_script_master.h
|
| index e45412594516c4b0bd7752f39088c8685e0650e3..f41545df0bac4a5cfc8cf6c89def08dd7fa02b48 100644
|
| --- a/chrome/browser/extensions/declarative_user_script_master.h
|
| +++ b/chrome/browser/extensions/declarative_user_script_master.h
|
| @@ -25,7 +25,7 @@ class DeclarativeUserScriptMaster : public ExtensionRegistryObserver {
|
| public:
|
| DeclarativeUserScriptMaster(Profile* profile,
|
| const ExtensionId& extension_id);
|
| - virtual ~DeclarativeUserScriptMaster();
|
| + ~DeclarativeUserScriptMaster() override;
|
|
|
| // Adds script to shared memory region. This may not happen right away if a
|
| // script load is in progress.
|
| @@ -43,10 +43,9 @@ class DeclarativeUserScriptMaster : public ExtensionRegistryObserver {
|
|
|
| private:
|
| // ExtensionRegistryObserver implementation.
|
| - virtual void OnExtensionUnloaded(
|
| - content::BrowserContext* browser_context,
|
| - const Extension* extension,
|
| - UnloadedExtensionInfo::Reason reason) override;
|
| + void OnExtensionUnloaded(content::BrowserContext* browser_context,
|
| + const Extension* extension,
|
| + UnloadedExtensionInfo::Reason reason) override;
|
|
|
| // ID of extension that owns scripts that this component manages.
|
| ExtensionId extension_id_;
|
|
|