fix: action.openPopup function missing (#45697)
This commit is contained in:
parent
159e1a42b3
commit
9d558cec5e
1 changed files with 7 additions and 0 deletions
|
@ -100,6 +100,13 @@ ExtensionActionSetIconFunction::RunExtensionAction() {
|
||||||
return RespondNow(NoArguments());
|
return RespondNow(NoArguments());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ExtensionFunction::ResponseAction
|
||||||
|
ExtensionActionOpenPopupFunction::RunExtensionAction() {
|
||||||
|
LOG(INFO) << "chrome.action.openPopup is not supported in Electron";
|
||||||
|
|
||||||
|
return RespondNow(WithArguments(""));
|
||||||
|
}
|
||||||
|
|
||||||
ExtensionFunction::ResponseAction
|
ExtensionFunction::ResponseAction
|
||||||
ExtensionActionSetTitleFunction::RunExtensionAction() {
|
ExtensionActionSetTitleFunction::RunExtensionAction() {
|
||||||
LOG(INFO) << "chrome.action.setTitle is not supported in Electron";
|
LOG(INFO) << "chrome.action.setTitle is not supported in Electron";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue