2017-10-27 20:07:35 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
2019-04-30 04:52:53 +03:00
|
|
|
#ifndef mozilla_PresShellInlines_h
|
|
|
|
#define mozilla_PresShellInlines_h
|
2017-02-10 05:42:27 +03:00
|
|
|
|
2019-03-29 18:12:47 +03:00
|
|
|
#include "mozilla/PresShell.h"
|
2019-01-02 16:05:23 +03:00
|
|
|
#include "mozilla/dom/Document.h"
|
2019-04-03 10:02:00 +03:00
|
|
|
#include "mozilla/dom/Element.h"
|
2017-02-10 05:42:27 +03:00
|
|
|
|
2019-04-30 04:52:53 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
void PresShell::SetNeedLayoutFlush() {
|
2017-02-10 05:42:27 +03:00
|
|
|
mNeedLayoutFlush = true;
|
2019-04-30 04:52:53 +03:00
|
|
|
if (dom::Document* doc = mDocument->GetDisplayDocument()) {
|
|
|
|
if (PresShell* presShell = doc->GetPresShell()) {
|
|
|
|
presShell->mNeedLayoutFlush = true;
|
2017-02-10 05:42:27 +03:00
|
|
|
}
|
|
|
|
}
|
2017-11-16 00:10:32 +03:00
|
|
|
|
|
|
|
#ifdef MOZ_GECKO_PROFILER
|
|
|
|
if (!mReflowCause) {
|
|
|
|
mReflowCause = profiler_get_backtrace();
|
|
|
|
}
|
|
|
|
#endif
|
2019-08-21 04:43:30 +03:00
|
|
|
|
|
|
|
mReqsPerFlush[FlushKind::Layout]++;
|
2017-02-10 05:42:27 +03:00
|
|
|
}
|
|
|
|
|
2019-04-30 04:52:53 +03:00
|
|
|
void PresShell::SetNeedStyleFlush() {
|
2017-02-10 05:42:27 +03:00
|
|
|
mNeedStyleFlush = true;
|
2019-04-30 04:52:53 +03:00
|
|
|
if (dom::Document* doc = mDocument->GetDisplayDocument()) {
|
|
|
|
if (PresShell* presShell = doc->GetPresShell()) {
|
2019-03-29 18:12:47 +03:00
|
|
|
presShell->mNeedStyleFlush = true;
|
2017-02-10 05:42:27 +03:00
|
|
|
}
|
|
|
|
}
|
2017-11-16 00:10:32 +03:00
|
|
|
|
|
|
|
#ifdef MOZ_GECKO_PROFILER
|
|
|
|
if (!mStyleCause) {
|
|
|
|
mStyleCause = profiler_get_backtrace();
|
|
|
|
}
|
|
|
|
#endif
|
2019-08-21 04:43:30 +03:00
|
|
|
|
|
|
|
mReqsPerFlush[FlushKind::Style]++;
|
2017-02-10 05:42:27 +03:00
|
|
|
}
|
|
|
|
|
2019-04-30 04:52:53 +03:00
|
|
|
void PresShell::EnsureStyleFlush() {
|
2017-05-07 17:36:47 +03:00
|
|
|
SetNeedStyleFlush();
|
|
|
|
ObserveStyleFlushes();
|
|
|
|
}
|
|
|
|
|
2019-04-30 04:52:53 +03:00
|
|
|
void PresShell::SetNeedThrottledAnimationFlush() {
|
2017-02-10 05:42:28 +03:00
|
|
|
mNeedThrottledAnimationFlush = true;
|
2019-04-30 04:52:53 +03:00
|
|
|
if (dom::Document* doc = mDocument->GetDisplayDocument()) {
|
|
|
|
if (PresShell* presShell = doc->GetPresShell()) {
|
2019-03-29 18:12:47 +03:00
|
|
|
presShell->mNeedThrottledAnimationFlush = true;
|
2017-02-10 05:42:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-30 04:52:53 +03:00
|
|
|
ServoStyleSet* PresShell::StyleSet() const {
|
2019-04-03 10:02:00 +03:00
|
|
|
return mDocument->StyleSetForPresShellOrMediaQueryEvaluation();
|
|
|
|
}
|
|
|
|
|
2019-03-29 18:11:22 +03:00
|
|
|
/* static */
|
|
|
|
inline void PresShell::EventHandler::OnPresShellDestroy(Document* aDocument) {
|
|
|
|
if (sLastKeyDownEventTargetElement &&
|
|
|
|
sLastKeyDownEventTargetElement->OwnerDoc() == aDocument) {
|
|
|
|
sLastKeyDownEventTargetElement = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2019-04-30 04:52:53 +03:00
|
|
|
#endif // mozilla_PresShellInlines_h
|