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:
Petra Öhlin 2019-03-26 14:13:55 +00:00 committed by Marshall Greenblatt
parent b949d86c40
commit 04e2728dc2
1 changed files with 9 additions and 0 deletions

View File

@ -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();