summaryrefslogtreecommitdiffstats
path: root/layout/generic/ScrollGeneration.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /layout/generic/ScrollGeneration.h
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/generic/ScrollGeneration.h')
-rw-r--r--layout/generic/ScrollGeneration.h70
1 files changed, 70 insertions, 0 deletions
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 <cstdint>
+#include <iosfwd>
+
+namespace mozilla {
+
+struct ScrollGenerationCounter;
+
+class APZTag {};
+class MainThreadTag {};
+
+template <typename Tag>
+struct ScrollGeneration;
+
+template <typename Tag>
+std::ostream& operator<<(std::ostream& aStream,
+ const ScrollGeneration<Tag>& aGen);
+
+template <typename Tag>
+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<Tag>& aOther) const;
+ bool operator==(const ScrollGeneration<Tag>& aOther) const;
+ bool operator!=(const ScrollGeneration<Tag>& aOther) const;
+
+ friend std::ostream& operator<< <>(std::ostream& aStream,
+ const ScrollGeneration<Tag>& aGen);
+
+ private:
+ uint64_t mValue;
+};
+
+using APZScrollGeneration = ScrollGeneration<APZTag>;
+using MainThreadScrollGeneration = ScrollGeneration<MainThreadTag>;
+
+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_