summaryrefslogtreecommitdiff
path: root/layout/base
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-10-15 18:01:51 +0000
committerMoonchild <moonchild@palemoon.org>2021-10-15 18:01:51 +0000
commit75cd5802a73efc06c01c4379bd2eaefc493a08e3 (patch)
tree27cec79bae9087dba8a5f25cebd7256ec742d9b7 /layout/base
parent5cca3850980ca2998755a252835d8450f505fda1 (diff)
downloadaura-central-75cd5802a73efc06c01c4379bd2eaefc493a08e3.tar.gz
Issue %3020 - Part 6: Clean up docs and some code comments.
Polish only, no code changes.
Diffstat (limited to 'layout/base')
-rw-r--r--layout/base/nsFrameManagerBase.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/layout/base/nsFrameManagerBase.h b/layout/base/nsFrameManagerBase.h
index bb192b64f..d935d97f6 100644
--- a/layout/base/nsFrameManagerBase.h
+++ b/layout/base/nsFrameManagerBase.h
@@ -58,13 +58,14 @@ protected:
bool mIsDestroyingFrames; // The frame manager is destroying some frame(s).
// The frame tree generation number
- // We use this to avoid unnecessary screenshotting
- // on Android. Unfortunately, this is static to match
+ // Unfortunately, this is static to match
// the single consumer which is also static. Keeping
// this the same greatly simplifies lifetime issues and
// makes sure we always using the correct number.
// A per PresContext generation number is available
// via nsPresContext::GetDOMGeneration
+ // XXXMC: This was introduced for issues on Android. Can potentially
+ // be removed.
static uint32_t sGlobalGenerationNumber;
};