refactor: move BrowserContextKeyedAPI::Observer::OnExtensionActionAPIShuttingDown() empty function into header

This commit is contained in:
Charles Kerr
2025-03-20 21:19:21 -05:00
parent 1b26200819
commit 076f702f71
2 changed files with 1 additions and 3 deletions

View File

@@ -27,8 +27,6 @@ void ExtensionActionAPI::Observer::OnExtensionActionUpdated(
content::WebContents* web_contents,
content::BrowserContext* browser_context) {}
void ExtensionActionAPI::Observer::OnExtensionActionAPIShuttingDown() {}
ExtensionActionAPI::Observer::~Observer() {}
//

View File

@@ -30,7 +30,7 @@ class ExtensionActionAPI : public BrowserContextKeyedAPI {
content::WebContents* web_contents,
content::BrowserContext* browser_context);
virtual void OnExtensionActionAPIShuttingDown();
virtual void OnExtensionActionAPIShuttingDown() {}
protected:
virtual ~Observer();