Bug 1852740: add tests for the `fetchpriority` attribute in Link headers. r=necko...
[gecko.git] / dom / base / nsQueryContentEventResult.h
blobdc535d418022de98a979319d1d481cb8fdbf269d
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_nsQueryContentEventResult_h
8 #define mozilla_dom_nsQueryContentEventResult_h
10 #include "nsIQueryContentEventResult.h"
11 #include "nsString.h"
12 #include "nsRect.h"
13 #include "nsTArray.h"
14 #include "Units.h"
15 #include "mozilla/Attributes.h"
16 #include "mozilla/EventForwards.h"
17 #include "mozilla/Maybe.h"
18 #include "mozilla/widget/IMEData.h"
20 class nsIWidget;
22 class nsQueryContentEventResult final : public nsIQueryContentEventResult {
23 public:
24 explicit nsQueryContentEventResult(mozilla::WidgetQueryContentEvent&& aEvent);
25 NS_DECL_ISUPPORTS
26 NS_DECL_NSIQUERYCONTENTEVENTRESULT
28 void SetEventResult(nsIWidget* aWidget);
30 protected:
31 ~nsQueryContentEventResult() = default;
33 mozilla::EventMessage mEventMessage;
35 mozilla::Maybe<mozilla::OffsetAndData<uint32_t>> mOffsetAndData;
36 mozilla::Maybe<uint32_t> mTentativeCaretOffset;
37 mozilla::LayoutDeviceIntRect mRect;
38 CopyableTArray<mozilla::LayoutDeviceIntRect> mRectArray;
40 bool mSucceeded;
41 bool mReversed;
44 #endif // mozilla_dom_nsQueryContentEventResult_h