diff options
author | win7-7 <win7-7@users.noreply.github.com> | 2019-07-08 19:19:56 +0300 |
---|---|---|
committer | win7-7 <win7-7@users.noreply.github.com> | 2019-07-08 19:19:56 +0300 |
commit | 570cad82795beeb1eb7011c09be295afa11373ce (patch) | |
tree | 3e189787caf3eeff12b34137a0055c185f0519b2 /layout/base/FrameProperties.h | |
parent | 4b4d3a9cca870681e1187794f951808c10274dd3 (diff) | |
download | UXP-570cad82795beeb1eb7011c09be295afa11373ce.tar UXP-570cad82795beeb1eb7011c09be295afa11373ce.tar.gz UXP-570cad82795beeb1eb7011c09be295afa11373ce.tar.lz UXP-570cad82795beeb1eb7011c09be295afa11373ce.tar.xz UXP-570cad82795beeb1eb7011c09be295afa11373ce.zip |
Iterate the frame property list once to collect which child list properties we have
Look into optimizing out the hashtable lookups from nsContainerFrame
Diffstat (limited to 'layout/base/FrameProperties.h')
-rw-r--r-- | layout/base/FrameProperties.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/base/FrameProperties.h b/layout/base/FrameProperties.h index bba3ee06b..71a79138a 100644 --- a/layout/base/FrameProperties.h +++ b/layout/base/FrameProperties.h @@ -161,6 +161,11 @@ public: } /** + * Return true if we have no properties, otherwise return false. + */ + bool IsEmpty() const { return mProperties.IsEmpty(); } + + /** * Set a property value. This requires a linear search through * the properties of the frame. Any existing value for the property * is destroyed. @@ -241,6 +246,28 @@ public: { DeleteInternal(aProperty, aFrame); } + + /** + * Call @aFunction for each property or until @aFunction returns false. + */ + template<class F> + void ForEach(F aFunction) const + { +#ifdef DEBUG + size_t len = mProperties.Length(); +#endif + for (const auto& prop : mProperties) { + bool shouldContinue = aFunction(prop.mProperty, prop.mValue); +#ifdef DEBUG + MOZ_ASSERT(len == mProperties.Length(), + "frame property list was modified by ForEach callback!"); +#endif + if (!shouldContinue) { + return; + } + } + } + /** * Remove and destroy all property values for the frame. */ |