chore: remove undocumented tabTraverse method (#26522)
This commit is contained in:
parent
92643a5a1c
commit
ac6d301015
2 changed files with 0 additions and 6 deletions
|
@ -2684,10 +2684,6 @@ bool WebContents::IsFocused() const {
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void WebContents::TabTraverse(bool reverse) {
|
|
||||||
web_contents()->FocusThroughTabTraversal(reverse);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool WebContents::SendIPCMessage(bool internal,
|
bool WebContents::SendIPCMessage(bool internal,
|
||||||
bool send_to_all,
|
bool send_to_all,
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
|
@ -3650,7 +3646,6 @@ v8::Local<v8::ObjectTemplate> WebContents::FillObjectTemplate(
|
||||||
.SetMethod("stopFindInPage", &WebContents::StopFindInPage)
|
.SetMethod("stopFindInPage", &WebContents::StopFindInPage)
|
||||||
.SetMethod("focus", &WebContents::Focus)
|
.SetMethod("focus", &WebContents::Focus)
|
||||||
.SetMethod("isFocused", &WebContents::IsFocused)
|
.SetMethod("isFocused", &WebContents::IsFocused)
|
||||||
.SetMethod("tabTraverse", &WebContents::TabTraverse)
|
|
||||||
.SetMethod("_send", &WebContents::SendIPCMessage)
|
.SetMethod("_send", &WebContents::SendIPCMessage)
|
||||||
.SetMethod("_postMessage", &WebContents::PostMessage)
|
.SetMethod("_postMessage", &WebContents::PostMessage)
|
||||||
.SetMethod("_sendToFrame", &WebContents::SendIPCMessageToFrame)
|
.SetMethod("_sendToFrame", &WebContents::SendIPCMessageToFrame)
|
||||||
|
|
|
@ -246,7 +246,6 @@ class WebContents : public gin::Wrappable<WebContents>,
|
||||||
// Focus.
|
// Focus.
|
||||||
void Focus();
|
void Focus();
|
||||||
bool IsFocused() const;
|
bool IsFocused() const;
|
||||||
void TabTraverse(bool reverse);
|
|
||||||
|
|
||||||
// Send messages to browser.
|
// Send messages to browser.
|
||||||
bool SendIPCMessage(bool internal,
|
bool SendIPCMessage(bool internal,
|
||||||
|
|
Loading…
Add table
Reference in a new issue