2010-03-15 01:51:44 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 11:12:37 +00: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-15 01:51:44 +00:00
|
|
|
|
|
|
|
#ifndef FRAMEPROPERTYTABLE_H_
|
|
|
|
#define FRAMEPROPERTYTABLE_H_
|
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2016-03-24 23:02:58 +00:00
|
|
|
#include "mozilla/TypeTraits.h"
|
|
|
|
#include "mozilla/unused.h"
|
2013-03-17 07:55:16 +00:00
|
|
|
#include "nsTArray.h"
|
2010-03-15 01:51:44 +00:00
|
|
|
#include "nsTHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
|
|
|
|
class nsIFrame;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2016-01-28 03:23:59 +00:00
|
|
|
struct FramePropertyDescriptorUntyped
|
|
|
|
{
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
2010-07-15 21:07:45 +00:00
|
|
|
* mDestructor will be called if it's non-null.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
typedef void UntypedDestructor(void* aPropertyValue);
|
|
|
|
UntypedDestructor* mDestructor;
|
2010-07-15 21:07:45 +00:00
|
|
|
/**
|
|
|
|
* mDestructorWithFrame will be called if it's non-null and mDestructor
|
|
|
|
* is null. WARNING: The frame passed to mDestructorWithFrame may
|
|
|
|
* be a dangling frame pointer, if this is being called during
|
|
|
|
* presshell teardown. Do not use it except to compare against
|
|
|
|
* other frame pointers. No frame will have been allocated with
|
|
|
|
* the same address yet.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
typedef void UntypedDestructorWithFrame(const nsIFrame* aFrame,
|
|
|
|
void* aPropertyValue);
|
|
|
|
UntypedDestructorWithFrame* mDestructorWithFrame;
|
2010-07-15 21:07:45 +00:00
|
|
|
/**
|
|
|
|
* mDestructor and mDestructorWithFrame may both be null, in which case
|
|
|
|
* no value destruction is a no-op.
|
2010-03-15 01:51:44 +00:00
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* At most one destructor should be passed in. In general, you should
|
|
|
|
* just use the static function FramePropertyDescriptor::New* below
|
|
|
|
* instead of using this constructor directly.
|
|
|
|
*/
|
|
|
|
MOZ_CONSTEXPR FramePropertyDescriptorUntyped(
|
|
|
|
UntypedDestructor* aDtor, UntypedDestructorWithFrame* aDtorWithFrame)
|
|
|
|
: mDestructor(aDtor)
|
|
|
|
, mDestructorWithFrame(aDtorWithFrame)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A pointer to a FramePropertyDescriptor serves as a unique property ID.
|
|
|
|
* The FramePropertyDescriptor stores metadata about the property.
|
|
|
|
* Currently the only metadata is a destructor function. The destructor
|
|
|
|
* function is called on property values when they are overwritten or
|
|
|
|
* deleted.
|
|
|
|
*
|
|
|
|
* To use this class, declare a global (i.e., file, class or function-scope
|
|
|
|
* static member) FramePropertyDescriptor and pass its address as
|
|
|
|
* aProperty in the FramePropertyTable methods.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
template<typename T>
|
2016-01-28 03:23:59 +00:00
|
|
|
struct FramePropertyDescriptor : public FramePropertyDescriptorUntyped
|
|
|
|
{
|
|
|
|
typedef void Destructor(T* aPropertyValue);
|
|
|
|
typedef void DestructorWithFrame(const nsIFrame* aaFrame,
|
|
|
|
T* aPropertyValue);
|
|
|
|
|
|
|
|
template<Destructor Dtor>
|
|
|
|
static MOZ_CONSTEXPR const FramePropertyDescriptor<T> NewWithDestructor()
|
|
|
|
{
|
|
|
|
return { Destruct<Dtor>, nullptr };
|
|
|
|
}
|
|
|
|
|
|
|
|
template<DestructorWithFrame Dtor>
|
|
|
|
static MOZ_CONSTEXPR
|
|
|
|
const FramePropertyDescriptor<T> NewWithDestructorWithFrame()
|
|
|
|
{
|
|
|
|
return { nullptr, DestructWithFrame<Dtor> };
|
|
|
|
}
|
|
|
|
|
|
|
|
static MOZ_CONSTEXPR const FramePropertyDescriptor<T> NewWithoutDestructor()
|
|
|
|
{
|
|
|
|
return { nullptr, nullptr };
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
MOZ_CONSTEXPR FramePropertyDescriptor(
|
|
|
|
UntypedDestructor* aDtor, UntypedDestructorWithFrame* aDtorWithFrame)
|
|
|
|
: FramePropertyDescriptorUntyped(aDtor, aDtorWithFrame)
|
|
|
|
{}
|
|
|
|
|
|
|
|
template<Destructor Dtor>
|
|
|
|
static void Destruct(void* aPropertyValue)
|
|
|
|
{
|
|
|
|
Dtor(static_cast<T*>(aPropertyValue));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<DestructorWithFrame Dtor>
|
|
|
|
static void DestructWithFrame(const nsIFrame* aFrame, void* aPropertyValue)
|
|
|
|
{
|
|
|
|
Dtor(aFrame, static_cast<T*>(aPropertyValue));
|
|
|
|
}
|
2010-03-15 01:51:44 +00:00
|
|
|
};
|
|
|
|
|
2016-01-28 03:23:59 +00:00
|
|
|
// SmallValueHolder<T> is a placeholder intended to be used as template
|
|
|
|
// argument of FramePropertyDescriptor for types which can fit into the
|
|
|
|
// size of a pointer directly. This class should never be defined, so
|
|
|
|
// that we won't use it for unexpected purpose by mistake.
|
|
|
|
template<typename T>
|
|
|
|
class SmallValueHolder;
|
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct FramePropertyTypeHelper
|
|
|
|
{
|
|
|
|
typedef T* Type;
|
|
|
|
};
|
|
|
|
template<typename T>
|
|
|
|
struct FramePropertyTypeHelper<SmallValueHolder<T>>
|
|
|
|
{
|
|
|
|
typedef T Type;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
|
|
|
* The FramePropertyTable is optimized for storing 0 or 1 properties on
|
|
|
|
* a given frame. Storing very large numbers of properties on a single
|
|
|
|
* frame will not be efficient.
|
|
|
|
*
|
|
|
|
* Property values are passed as void* but do not actually have to be
|
|
|
|
* valid pointers. You can use NS_INT32_TO_PTR/NS_PTR_TO_INT32 to
|
2012-08-22 15:56:38 +00:00
|
|
|
* store int32_t values. Null/zero values can be stored and retrieved.
|
2010-03-15 01:51:44 +00:00
|
|
|
* Of course, the destructor function (if any) must handle such values
|
|
|
|
* correctly.
|
|
|
|
*/
|
|
|
|
class FramePropertyTable {
|
|
|
|
public:
|
2016-01-28 03:23:59 +00:00
|
|
|
template<typename T>
|
|
|
|
using Descriptor = const FramePropertyDescriptor<T>*;
|
|
|
|
using UntypedDescriptor = const FramePropertyDescriptorUntyped*;
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
using PropertyType = typename detail::FramePropertyTypeHelper<T>::Type;
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
FramePropertyTable() : mLastFrame(nullptr), mLastEntry(nullptr)
|
2010-03-15 01:51:44 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
~FramePropertyTable()
|
|
|
|
{
|
|
|
|
DeleteAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a property value on a frame. This requires one hashtable
|
|
|
|
* lookup (using the frame as the key) and a linear search through
|
|
|
|
* the properties of that frame. Any existing value for the property
|
|
|
|
* is destroyed.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
template<typename T>
|
|
|
|
void Set(const nsIFrame* aFrame, Descriptor<T> aProperty,
|
|
|
|
PropertyType<T> aValue)
|
|
|
|
{
|
2016-05-29 23:19:25 +00:00
|
|
|
void* ptr = ReinterpretHelper<T>::ToPointer(aValue);
|
|
|
|
SetInternal(aFrame, aProperty, ptr);
|
2016-01-28 03:23:59 +00:00
|
|
|
}
|
2016-03-24 23:02:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return true if @aProperty is set for @aFrame. This requires one hashtable
|
|
|
|
* lookup (using the frame as the key) and a linear search through the
|
|
|
|
* properties of that frame.
|
|
|
|
*
|
|
|
|
* In most cases, this shouldn't be used outside of assertions, because if
|
|
|
|
* you're doing a lookup anyway it would be far more efficient to call Get()
|
|
|
|
* or Remove() and check the aFoundResult outparam to find out whether the
|
|
|
|
* property is set. Legitimate non-assertion uses include:
|
|
|
|
*
|
|
|
|
* - Checking if a frame property is set in cases where that's all we want
|
|
|
|
* to know (i.e., we don't intend to read the actual value or remove the
|
|
|
|
* property).
|
|
|
|
*
|
2016-03-25 21:49:42 +00:00
|
|
|
* - Calling Has() before Set() in cases where we don't want to overwrite
|
2016-03-24 23:02:58 +00:00
|
|
|
* an existing value for the frame property.
|
|
|
|
*/
|
|
|
|
template<typename T>
|
2016-03-25 21:49:42 +00:00
|
|
|
bool Has(const nsIFrame* aFrame, Descriptor<T> aProperty)
|
2016-03-24 23:02:58 +00:00
|
|
|
{
|
|
|
|
bool foundResult = false;
|
|
|
|
mozilla::Unused << GetInternal(aFrame, aProperty, &foundResult);
|
|
|
|
return foundResult;
|
|
|
|
}
|
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
|
|
|
* Get a property value for a frame. This requires one hashtable
|
|
|
|
* lookup (using the frame as the key) and a linear search through
|
|
|
|
* the properties of that frame. If the frame has no such property,
|
2016-01-28 03:23:59 +00:00
|
|
|
* returns zero-filled result, which means null for pointers and
|
|
|
|
* zero for integers and floating point types.
|
2010-03-15 01:51:44 +00:00
|
|
|
* @param aFoundResult if non-null, receives a value 'true' iff
|
|
|
|
* the frame has a value for the property. This lets callers
|
|
|
|
* disambiguate a null result, which can mean 'no such property' or
|
|
|
|
* 'property value is null'.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
template<typename T>
|
|
|
|
PropertyType<T> Get(const nsIFrame* aFrame, Descriptor<T> aProperty,
|
|
|
|
bool* aFoundResult = nullptr)
|
|
|
|
{
|
2016-05-29 23:19:25 +00:00
|
|
|
void* ptr = GetInternal(aFrame, aProperty, aFoundResult);
|
|
|
|
return ReinterpretHelper<T>::FromPointer(ptr);
|
2016-01-28 03:23:59 +00:00
|
|
|
}
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
|
|
|
* Remove a property value for a frame. This requires one hashtable
|
|
|
|
* lookup (using the frame as the key) and a linear search through
|
|
|
|
* the properties of that frame. The old property value is returned
|
|
|
|
* (and not destroyed). If the frame has no such property,
|
2016-01-28 03:23:59 +00:00
|
|
|
* returns zero-filled result, which means null for pointers and
|
|
|
|
* zero for integers and floating point types.
|
2010-03-15 01:51:44 +00:00
|
|
|
* @param aFoundResult if non-null, receives a value 'true' iff
|
|
|
|
* the frame had a value for the property. This lets callers
|
|
|
|
* disambiguate a null result, which can mean 'no such property' or
|
|
|
|
* 'property value is null'.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
template<typename T>
|
|
|
|
PropertyType<T> Remove(const nsIFrame* aFrame, Descriptor<T> aProperty,
|
|
|
|
bool* aFoundResult = nullptr)
|
|
|
|
{
|
2016-05-29 23:19:25 +00:00
|
|
|
void* ptr = RemoveInternal(aFrame, aProperty, aFoundResult);
|
|
|
|
return ReinterpretHelper<T>::FromPointer(ptr);
|
2016-01-28 03:23:59 +00:00
|
|
|
}
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
|
|
|
* Remove and destroy a property value for a frame. This requires one
|
|
|
|
* hashtable lookup (using the frame as the key) and a linear search
|
|
|
|
* through the properties of that frame. If the frame has no such
|
|
|
|
* property, nothing happens.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
template<typename T>
|
|
|
|
void Delete(const nsIFrame* aFrame, Descriptor<T> aProperty)
|
|
|
|
{
|
|
|
|
DeleteInternal(aFrame, aProperty);
|
|
|
|
}
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
|
|
|
* Remove and destroy all property values for a frame. This requires one
|
|
|
|
* hashtable lookup (using the frame as the key).
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
void DeleteAllFor(const nsIFrame* aFrame);
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
|
|
|
* Remove and destroy all property values for all frames.
|
|
|
|
*/
|
|
|
|
void DeleteAll();
|
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) const;
|
2012-02-21 05:02:24 +00:00
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
protected:
|
2016-01-28 03:23:59 +00:00
|
|
|
void SetInternal(const nsIFrame* aFrame, UntypedDescriptor aProperty,
|
|
|
|
void* aValue);
|
|
|
|
|
|
|
|
void* GetInternal(const nsIFrame* aFrame, UntypedDescriptor aProperty,
|
|
|
|
bool* aFoundResult);
|
|
|
|
|
|
|
|
void* RemoveInternal(const nsIFrame* aFrame, UntypedDescriptor aProperty,
|
|
|
|
bool* aFoundResult);
|
|
|
|
|
|
|
|
void DeleteInternal(const nsIFrame* aFrame, UntypedDescriptor aProperty);
|
|
|
|
|
|
|
|
template<typename T>
|
2016-05-29 23:19:25 +00:00
|
|
|
struct ReinterpretHelper
|
2016-01-28 03:23:59 +00:00
|
|
|
{
|
|
|
|
static_assert(sizeof(PropertyType<T>) <= sizeof(void*),
|
|
|
|
"size of the value must never be larger than a pointer");
|
2016-05-29 23:19:25 +00:00
|
|
|
|
|
|
|
static void* ToPointer(PropertyType<T> aValue)
|
|
|
|
{
|
|
|
|
void* ptr = nullptr;
|
|
|
|
memcpy(&ptr, &aValue, sizeof(aValue));
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PropertyType<T> FromPointer(void* aPtr)
|
|
|
|
{
|
|
|
|
PropertyType<T> value;
|
|
|
|
memcpy(&value, &aPtr, sizeof(value));
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct ReinterpretHelper<T*>
|
|
|
|
{
|
|
|
|
static void* ToPointer(T* aValue)
|
|
|
|
{
|
|
|
|
return static_cast<void*>(aValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
static T* FromPointer(void* aPtr)
|
|
|
|
{
|
|
|
|
return static_cast<T*>(aPtr);
|
|
|
|
}
|
2016-01-28 03:23:59 +00:00
|
|
|
};
|
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
/**
|
|
|
|
* Stores a property descriptor/value pair. It can also be used to
|
|
|
|
* store an nsTArray of PropertyValues.
|
|
|
|
*/
|
|
|
|
struct PropertyValue {
|
2012-07-30 14:20:58 +00:00
|
|
|
PropertyValue() : mProperty(nullptr), mValue(nullptr) {}
|
2016-01-28 03:23:59 +00:00
|
|
|
PropertyValue(UntypedDescriptor aProperty, void* aValue)
|
2010-03-15 01:51:44 +00:00
|
|
|
: mProperty(aProperty), mValue(aValue) {}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsArray() { return !mProperty && mValue; }
|
2010-03-15 01:51:44 +00:00
|
|
|
nsTArray<PropertyValue>* ToArray()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(IsArray(), "Must be array");
|
|
|
|
return reinterpret_cast<nsTArray<PropertyValue>*>(&mValue);
|
|
|
|
}
|
|
|
|
|
2016-01-28 03:23:59 +00:00
|
|
|
void DestroyValueFor(const nsIFrame* aFrame) {
|
2010-03-15 01:51:44 +00:00
|
|
|
if (mProperty->mDestructor) {
|
|
|
|
mProperty->mDestructor(mValue);
|
2010-07-15 21:07:45 +00:00
|
|
|
} else if (mProperty->mDestructorWithFrame) {
|
|
|
|
mProperty->mDestructorWithFrame(aFrame, mValue);
|
2010-03-15 01:51:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) {
|
2012-02-21 05:02:24 +00:00
|
|
|
size_t n = 0;
|
|
|
|
// We don't need to measure mProperty because it always points to static
|
|
|
|
// memory. As for mValue: if it's a single value we can't measure it,
|
|
|
|
// because the type is opaque; if it's an array, we measure the array
|
|
|
|
// storage, but we can't measure the individual values, again because
|
|
|
|
// their types are opaque.
|
|
|
|
if (IsArray()) {
|
|
|
|
nsTArray<PropertyValue>* array = ToArray();
|
2015-07-29 06:24:24 +00:00
|
|
|
n += array->ShallowSizeOfExcludingThis(aMallocSizeOf);
|
2012-02-21 05:02:24 +00:00
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2016-01-28 03:23:59 +00:00
|
|
|
UntypedDescriptor mProperty;
|
2010-03-15 01:51:44 +00:00
|
|
|
void* mValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used with an array of PropertyValues to allow lookups that compare
|
|
|
|
* only on the FramePropertyDescriptor.
|
|
|
|
*/
|
|
|
|
class PropertyComparator {
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool Equals(const PropertyValue& a, const PropertyValue& b) const {
|
2010-03-15 01:51:44 +00:00
|
|
|
return a.mProperty == b.mProperty;
|
|
|
|
}
|
2016-01-28 03:23:59 +00:00
|
|
|
bool Equals(UntypedDescriptor a, const PropertyValue& b) const {
|
2010-03-15 01:51:44 +00:00
|
|
|
return a == b.mProperty;
|
|
|
|
}
|
2016-01-28 03:23:59 +00:00
|
|
|
bool Equals(const PropertyValue& a, UntypedDescriptor b) const {
|
2010-03-15 01:51:44 +00:00
|
|
|
return a.mProperty == b;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Our hashtable entry. The key is an nsIFrame*, the value is a
|
|
|
|
* PropertyValue representing one or more property/value pairs.
|
|
|
|
*/
|
2016-01-28 03:23:59 +00:00
|
|
|
class Entry : public nsPtrHashKey<const nsIFrame>
|
2010-03-15 01:51:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-01-28 03:23:59 +00:00
|
|
|
explicit Entry(KeyTypePointer aKey) : nsPtrHashKey<const nsIFrame>(aKey) {}
|
2010-03-15 01:51:44 +00:00
|
|
|
Entry(const Entry &toCopy) :
|
2016-01-28 03:23:59 +00:00
|
|
|
nsPtrHashKey<const nsIFrame>(toCopy), mProp(toCopy.mProp) {}
|
2010-03-15 01:51:44 +00:00
|
|
|
|
2014-08-05 20:27:41 +00:00
|
|
|
size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) {
|
|
|
|
return mProp.SizeOfExcludingThis(aMallocSizeOf);
|
|
|
|
}
|
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
PropertyValue mProp;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void DeleteAllForEntry(Entry* aEntry);
|
|
|
|
|
2016-02-09 02:56:07 +00:00
|
|
|
// Note that mLastEntry points into mEntries, so we need to be careful about
|
|
|
|
// not triggering a resize of mEntries, e.g. use RawRemoveEntry() instead of
|
|
|
|
// RemoveEntry() in some places.
|
2010-03-15 01:51:44 +00:00
|
|
|
nsTHashtable<Entry> mEntries;
|
2016-01-28 03:23:59 +00:00
|
|
|
const nsIFrame* mLastFrame;
|
2010-03-15 01:51:44 +00:00
|
|
|
Entry* mLastEntry;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class encapsulates the properties of a frame.
|
|
|
|
*/
|
|
|
|
class FrameProperties {
|
|
|
|
public:
|
2016-01-28 03:23:59 +00:00
|
|
|
template<typename T> using Descriptor = FramePropertyTable::Descriptor<T>;
|
|
|
|
template<typename T> using PropertyType = FramePropertyTable::PropertyType<T>;
|
|
|
|
|
2010-03-15 01:51:44 +00:00
|
|
|
FrameProperties(FramePropertyTable* aTable, const nsIFrame* aFrame)
|
2016-01-28 03:23:59 +00:00
|
|
|
: mTable(aTable), mFrame(aFrame) {}
|
2010-03-15 01:51:44 +00:00
|
|
|
|
2016-01-28 03:23:59 +00:00
|
|
|
template<typename T>
|
|
|
|
void Set(Descriptor<T> aProperty, PropertyType<T> aValue) const
|
2010-03-15 01:51:44 +00:00
|
|
|
{
|
|
|
|
mTable->Set(mFrame, aProperty, aValue);
|
|
|
|
}
|
2016-03-24 23:02:58 +00:00
|
|
|
|
|
|
|
template<typename T>
|
2016-03-25 21:49:42 +00:00
|
|
|
bool Has(Descriptor<T> aProperty) const
|
2016-03-24 23:02:58 +00:00
|
|
|
{
|
2016-03-25 21:49:42 +00:00
|
|
|
return mTable->Has(mFrame, aProperty);
|
2016-03-24 23:02:58 +00:00
|
|
|
}
|
|
|
|
|
2016-01-28 03:23:59 +00:00
|
|
|
template<typename T>
|
|
|
|
PropertyType<T> Get(Descriptor<T> aProperty,
|
|
|
|
bool* aFoundResult = nullptr) const
|
2010-03-15 01:51:44 +00:00
|
|
|
{
|
|
|
|
return mTable->Get(mFrame, aProperty, aFoundResult);
|
|
|
|
}
|
2016-01-28 03:23:59 +00:00
|
|
|
template<typename T>
|
|
|
|
PropertyType<T> Remove(Descriptor<T> aProperty,
|
|
|
|
bool* aFoundResult = nullptr) const
|
2010-03-15 01:51:44 +00:00
|
|
|
{
|
|
|
|
return mTable->Remove(mFrame, aProperty, aFoundResult);
|
|
|
|
}
|
2016-01-28 03:23:59 +00:00
|
|
|
template<typename T>
|
|
|
|
void Delete(Descriptor<T> aProperty)
|
2010-03-15 01:51:44 +00:00
|
|
|
{
|
|
|
|
mTable->Delete(mFrame, aProperty);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
FramePropertyTable* mTable;
|
2016-01-28 03:23:59 +00:00
|
|
|
const nsIFrame* mFrame;
|
2010-03-15 01:51:44 +00:00
|
|
|
};
|
|
|
|
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace mozilla
|
2010-03-15 01:51:44 +00:00
|
|
|
|
|
|
|
#endif /* FRAMEPROPERTYTABLE_H_ */
|