2010-03-10 13:26:11 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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 13:26:11 +03:00
|
|
|
|
|
|
|
#ifndef _nsAccCache_H_
|
|
|
|
#define _nsAccCache_H_
|
|
|
|
|
2014-10-22 04:49:28 +04:00
|
|
|
#include "xpcAccessibleDocument.h"
|
2010-03-10 13:26:11 +03:00
|
|
|
|
2010-04-27 10:52:03 +04:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Accessible cache utils
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2010-03-10 13:26:11 +03:00
|
|
|
|
2015-02-19 07:37:32 +03:00
|
|
|
template <class T>
|
2015-11-30 01:02:07 +03:00
|
|
|
void
|
|
|
|
UnbindCacheEntriesFromDocument(
|
|
|
|
nsRefPtrHashtable<nsPtrHashKey<const void>, T>& aCache)
|
2015-02-19 07:37:32 +03:00
|
|
|
{
|
2015-11-30 01:02:07 +03:00
|
|
|
for (auto iter = aCache.Iter(); !iter.Done(); iter.Next()) {
|
|
|
|
T* accessible = iter.Data();
|
|
|
|
MOZ_ASSERT(accessible && !accessible->IsDefunct());
|
|
|
|
accessible->Document()->UnbindFromDocument(accessible);
|
|
|
|
iter.Remove();
|
|
|
|
}
|
2015-02-19 07:37:32 +03:00
|
|
|
}
|
|
|
|
|
2010-03-10 13:26:11 +03:00
|
|
|
/**
|
|
|
|
* Clear the cache and shutdown the accessibles.
|
|
|
|
*/
|
2014-11-05 18:46:37 +03:00
|
|
|
template <class T>
|
2010-03-10 13:26:11 +03:00
|
|
|
static void
|
2014-11-05 18:46:37 +03:00
|
|
|
ClearCache(nsRefPtrHashtable<nsPtrHashKey<const void>, T>& aCache)
|
2010-03-10 13:26:11 +03:00
|
|
|
{
|
2015-11-30 01:02:07 +03:00
|
|
|
for (auto iter = aCache.Iter(); !iter.Done(); iter.Next()) {
|
|
|
|
T* accessible = iter.Data();
|
|
|
|
MOZ_ASSERT(accessible);
|
|
|
|
if (accessible && !accessible->IsDefunct()) {
|
|
|
|
accessible->Shutdown();
|
|
|
|
}
|
|
|
|
iter.Remove();
|
|
|
|
}
|
2010-03-10 13:26:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|