-
Notifications
You must be signed in to change notification settings - Fork 114
Conversation
49afc2b
to
0b7e67c
Compare
@@ -21,7 +21,16 @@ binding.registerCustomHook(function (bindingsAPI, extensionId) { | |||
}) | |||
|
|||
apiFunctions.setHandleRequest('create', function (createData, cb) { | |||
console.warn('chrome.windows.create is not supported yet') | |||
var responseId = ++id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should be using ipc.guid()
here. The integer ids can be duplicated across windows. Please update other uses in this file as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you have time please also update browser_action_bindings.js in a separate PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like also context_menu_bindings.js
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addressed 3a9b420
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure will do
Implements chrome.windows.create
Implements chrome.windows.create
Implements chrome.windows.create
Initial work to add support for
chrome.windows.create
.Resolves brave/browser-laptop#6789