Mac: cefclient:: Add C++ implementation of BrowserWindowOsrMac::UpdateAccessibilityLocation
This fixes an build break that was introduced by commit af349ad
(see issue #2604).
This commit is contained in:
parent
b949d86c40
commit
04e2728dc2
|
@ -1686,6 +1686,15 @@ void BrowserWindowOsrMac::UpdateAccessibilityTree(CefRefPtr<CefValue> value) {
|
|||
}
|
||||
}
|
||||
|
||||
void BrowserWindowOsrMac::UpdateAccessibilityLocation(
|
||||
scoped_refptr<CefValue> value) {
|
||||
CEF_REQUIRE_UI_THREAD();
|
||||
|
||||
if (nsview_) {
|
||||
[GLView(nsview_) UpdateAccessibilityLocation:value];
|
||||
}
|
||||
}
|
||||
|
||||
void BrowserWindowOsrMac::Create(ClientWindowHandle parent_handle,
|
||||
const CefRect& rect) {
|
||||
REQUIRE_MAIN_THREAD();
|
||||
|
|
Loading…
Reference in New Issue