From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- layout/generic/ScrollGeneration.h | 70 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 layout/generic/ScrollGeneration.h (limited to 'layout/generic/ScrollGeneration.h') diff --git a/layout/generic/ScrollGeneration.h b/layout/generic/ScrollGeneration.h new file mode 100644 index 0000000000..90eb243e9e --- /dev/null +++ b/layout/generic/ScrollGeneration.h @@ -0,0 +1,70 @@ +/* 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/. */ + +#ifndef mozilla_ScrollGeneration_h_ +#define mozilla_ScrollGeneration_h_ + +#include +#include + +namespace mozilla { + +struct ScrollGenerationCounter; + +class APZTag {}; +class MainThreadTag {}; + +template +struct ScrollGeneration; + +template +std::ostream& operator<<(std::ostream& aStream, + const ScrollGeneration& aGen); + +template +struct ScrollGeneration { + friend struct ScrollGenerationCounter; + + private: + // Private constructor; use ScrollGenerationCounter to get a new instance. + explicit ScrollGeneration(uint64_t aValue); + + public: + // Dummy constructor, needed for IPDL purposes. Not intended for manual use. + ScrollGeneration(); + + uint64_t Raw() const { return mValue; } + + bool operator<(const ScrollGeneration& aOther) const; + bool operator==(const ScrollGeneration& aOther) const; + bool operator!=(const ScrollGeneration& aOther) const; + + friend std::ostream& operator<< <>(std::ostream& aStream, + const ScrollGeneration& aGen); + + private: + uint64_t mValue; +}; + +using APZScrollGeneration = ScrollGeneration; +using MainThreadScrollGeneration = ScrollGeneration; + +struct ScrollGenerationCounter { + MainThreadScrollGeneration NewMainThreadGeneration() { + uint64_t value = ++mCounter; + return MainThreadScrollGeneration(value); + } + + APZScrollGeneration NewAPZGeneration() { + uint64_t value = ++mCounter; + return APZScrollGeneration(value); + } + + private: + uint64_t mCounter = 0; +}; + +} // namespace mozilla + +#endif // mozilla_ScrollGeneration_h_ -- cgit v1.2.3