mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 04:39:03 +02:00
Summary of the changes/reasons: - LayoutTelemetryTools.h directly uses several types whose headers it needs to include. (These includes were present in its .cpp file; I'm migrating them from there to the .h file, and I'm adding a new include for "Saturate.h" to provide the SaturateUint8 type.) - LayoutTelemetryTools.cpp needs an include for MainThreadUtils.h, to provide NS_IsMainThread(). - StaticPresData.cpp needs an include for ServoUtils.h, to provide AssertIsMainThreadOrServoFontMetricsLocked(). - ZoomConstraintsClient.h needs a forward-decl for mozilla::dom::Document since it uses a pointer of that type in a function-decl. - ScrollSnap.h needs forward-decls of nsPoint/nsRect for some references to those types in a method signature. - nsGridContainerFrame.cpp needs an include for nsBoxLayoutState.h since it uses that type (it instantiates a nsBoxLayoutState instance). - nsPlaceholderFrame.cpp needs a "using" decl for the mozilla::dom namespace in order to use the un-namespace-prefixed "Element" type. Differential Revision: https://phabricator.services.mozilla.com/D61603 --HG-- extra : moz-landing-system : lando
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
/* -*- 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/. */
|
|
|
|
#ifndef ZoomConstraintsClient_h_
|
|
#define ZoomConstraintsClient_h_
|
|
|
|
#include "mozilla/layers/ScrollableLayerGuid.h"
|
|
#include "mozilla/Maybe.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIDOMEventListener.h"
|
|
#include "nsIObserver.h"
|
|
|
|
namespace mozilla {
|
|
class PresShell;
|
|
namespace dom {
|
|
class Document;
|
|
class EventTarget;
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
class ZoomConstraintsClient final : public nsIDOMEventListener,
|
|
public nsIObserver {
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIDOMEVENTLISTENER
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
ZoomConstraintsClient();
|
|
|
|
private:
|
|
~ZoomConstraintsClient();
|
|
|
|
public:
|
|
void Init(mozilla::PresShell* aPresShell, mozilla::dom::Document* aDocument);
|
|
void Destroy();
|
|
void ScreenSizeChanged();
|
|
|
|
private:
|
|
void RefreshZoomConstraints();
|
|
|
|
RefPtr<mozilla::dom::Document> mDocument;
|
|
// raw ref since the presShell owns this
|
|
mozilla::PresShell* MOZ_NON_OWNING_REF mPresShell;
|
|
nsCOMPtr<mozilla::dom::EventTarget> mEventTarget;
|
|
mozilla::Maybe<mozilla::layers::ScrollableLayerGuid> mGuid;
|
|
};
|
|
|
|
#endif
|