2016-11-14 12:14:29 +03: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 "GeckoCustom.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::a11y;
|
|
|
|
|
|
|
|
IMPL_IUNKNOWN_QUERY_HEAD(GeckoCustom)
|
|
|
|
IMPL_IUNKNOWN_QUERY_IFACE(IGeckoCustom)
|
|
|
|
IMPL_IUNKNOWN_QUERY_TAIL_AGGREGATED(mAcc)
|
2016-11-16 00:11:41 +03:00
|
|
|
|
|
|
|
HRESULT
|
|
|
|
GeckoCustom::get_anchorCount(long* aCount)
|
|
|
|
{
|
|
|
|
*aCount = mAcc->AnchorCount();
|
|
|
|
return S_OK;
|
|
|
|
}
|
2016-11-16 03:29:20 +03:00
|
|
|
|
|
|
|
STDMETHODIMP
|
|
|
|
GeckoCustom::get_ID(uint64_t* aID)
|
|
|
|
{
|
|
|
|
*aID = mAcc->IsDoc() ? 0 : reinterpret_cast<uintptr_t>(mAcc.get());
|
|
|
|
return S_OK;
|
|
|
|
}
|