forked from mirrors/gecko-dev
This creates a clearer distinction between local pivots and remote pivots. The former happens in the parent process and the latter happens in the remote content process. Differential Revision: https://phabricator.services.mozilla.com/D144482
75 lines
2 KiB
C++
75 lines
2 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "DocAccessiblePlatformExtChild.h"
|
|
|
|
#include "DocAccessibleChild.h"
|
|
#include "AccessibleWrap.h"
|
|
|
|
namespace mozilla {
|
|
namespace a11y {
|
|
|
|
mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvPivotTo(
|
|
uint64_t aID, int32_t aGranularity, bool aForward, bool aInclusive) {
|
|
if (auto acc = IdToAccessibleWrap(aID)) {
|
|
acc->PivotTo(aGranularity, aForward, aInclusive);
|
|
}
|
|
|
|
return IPC_OK();
|
|
}
|
|
|
|
mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvNavigateText(
|
|
uint64_t aID, int32_t aGranularity, int32_t aStartOffset,
|
|
int32_t aEndOffset, bool aForward, bool aSelect) {
|
|
if (auto acc = IdToAccessibleWrap(aID)) {
|
|
acc->NavigateText(aGranularity, aStartOffset, aEndOffset, aForward,
|
|
aSelect);
|
|
}
|
|
|
|
return IPC_OK();
|
|
}
|
|
|
|
mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvSetSelection(
|
|
uint64_t aID, int32_t aStart, int32_t aEnd) {
|
|
if (auto acc = IdToAccessibleWrap(aID)) {
|
|
acc->SetSelection(aStart, aEnd);
|
|
}
|
|
|
|
return IPC_OK();
|
|
}
|
|
|
|
mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvCut(uint64_t aID) {
|
|
if (auto acc = IdToAccessibleWrap(aID)) {
|
|
acc->Cut();
|
|
}
|
|
|
|
return IPC_OK();
|
|
}
|
|
|
|
mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvCopy(uint64_t aID) {
|
|
if (auto acc = IdToAccessibleWrap(aID)) {
|
|
acc->Copy();
|
|
}
|
|
|
|
return IPC_OK();
|
|
}
|
|
|
|
mozilla::ipc::IPCResult DocAccessiblePlatformExtChild::RecvPaste(uint64_t aID) {
|
|
if (auto acc = IdToAccessibleWrap(aID)) {
|
|
acc->Paste();
|
|
}
|
|
|
|
return IPC_OK();
|
|
}
|
|
|
|
AccessibleWrap* DocAccessiblePlatformExtChild::IdToAccessibleWrap(
|
|
const uint64_t& aID) const {
|
|
return static_cast<AccessibleWrap*>(
|
|
static_cast<DocAccessibleChild*>(Manager())->IdToAccessible(aID));
|
|
}
|
|
|
|
} // namespace a11y
|
|
} // namespace mozilla
|