2010-03-10 02:26:11 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2010-03-10 02:26:11 -08:00
|
|
|
|
|
|
|
#ifndef _nsAccCache_H_
|
|
|
|
#define _nsAccCache_H_
|
|
|
|
|
2014-10-21 17:49:28 -07:00
|
|
|
#include "xpcAccessibleDocument.h"
|
2010-03-10 02:26:11 -08:00
|
|
|
|
2010-04-26 23:52:03 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Accessible cache utils
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2010-03-10 02:26:11 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Shutdown and removes the accessible from cache.
|
|
|
|
*/
|
|
|
|
template <class T>
|
|
|
|
static PLDHashOperator
|
2010-06-11 21:04:35 -07:00
|
|
|
ClearCacheEntry(const void* aKey, nsRefPtr<T>& aAccessible, void* aUserArg)
|
2010-03-10 02:26:11 -08:00
|
|
|
{
|
2013-04-02 17:33:43 -07:00
|
|
|
NS_ASSERTION(aAccessible, "Calling ClearCacheEntry with a nullptr pointer!");
|
2010-06-11 21:04:35 -07:00
|
|
|
if (aAccessible)
|
|
|
|
aAccessible->Shutdown();
|
2010-03-10 02:26:11 -08:00
|
|
|
|
|
|
|
return PL_DHASH_REMOVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear the cache and shutdown the accessibles.
|
|
|
|
*/
|
2012-03-21 11:07:31 -07:00
|
|
|
|
2010-03-10 02:26:11 -08:00
|
|
|
static void
|
2012-11-17 18:01:44 -08:00
|
|
|
ClearCache(mozilla::a11y::AccessibleHashtable& aCache)
|
2010-03-10 02:26:11 -08:00
|
|
|
{
|
2012-11-17 18:01:44 -08:00
|
|
|
aCache.Enumerate(ClearCacheEntry<mozilla::a11y::Accessible>, nullptr);
|
2010-03-10 02:26:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|