2012-12-02 04:58:25 +04:00
|
|
|
/* -*- 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 "Platform.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::a11y;
|
|
|
|
|
|
|
|
void a11y::PlatformInit() {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2012-12-02 04:58:25 +04:00
|
|
|
void a11y::PlatformShutdown() {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2021-02-20 02:14:33 +03:00
|
|
|
void a11y::ProxyCreated(RemoteAccessible*, uint32_t) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2021-02-20 02:14:33 +03:00
|
|
|
void a11y::ProxyDestroyed(RemoteAccessible*) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2021-02-20 02:14:33 +03:00
|
|
|
void a11y::ProxyEvent(RemoteAccessible*, uint32_t) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2021-02-20 02:14:33 +03:00
|
|
|
void a11y::ProxyStateChangeEvent(RemoteAccessible*, uint64_t, bool) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2021-02-20 02:14:33 +03:00
|
|
|
void a11y::ProxyCaretMoveEvent(RemoteAccessible* aTarget, int32_t aOffset,
|
2020-07-02 21:08:52 +03:00
|
|
|
bool aIsSelectionCollapsed) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2021-02-20 02:14:33 +03:00
|
|
|
void a11y::ProxyTextChangeEvent(RemoteAccessible*, const nsString&, int32_t,
|
2015-06-05 22:43:30 +03:00
|
|
|
uint32_t, bool, bool) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2021-02-20 02:14:33 +03:00
|
|
|
void a11y::ProxyShowHideEvent(RemoteAccessible*, RemoteAccessible*, bool,
|
|
|
|
bool) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2021-02-20 02:14:33 +03:00
|
|
|
void a11y::ProxySelectionEvent(RemoteAccessible*, RemoteAccessible*, uint32_t) {
|
|
|
|
}
|