Skip to content

Commit

Permalink
Bug 1519636 - Reformat recent changes to the Google coding style r=Ehsan
Browse files Browse the repository at this point in the history
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D41559

--HG--
extra : moz-landing-system : lando
  • Loading branch information
sylvestre committed Aug 13, 2019
1 parent 609348b commit 645f2d5
Show file tree
Hide file tree
Showing 68 changed files with 230 additions and 241 deletions.
4 changes: 2 additions & 2 deletions caps/OriginAttributes.h
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class OriginAttributesPattern : public dom::OriginAttributesPatternDictionary {

if (mGeckoViewSessionContextId.WasPassed() &&
mGeckoViewSessionContextId.Value() !=
aAttrs.mGeckoViewSessionContextId) {
aAttrs.mGeckoViewSessionContextId) {
return false;
}

Expand Down Expand Up @@ -181,7 +181,7 @@ class OriginAttributesPattern : public dom::OriginAttributesPatternDictionary {
if (mGeckoViewSessionContextId.WasPassed() &&
aOther.mGeckoViewSessionContextId.WasPassed() &&
mGeckoViewSessionContextId.Value() !=
aOther.mGeckoViewSessionContextId.Value()) {
aOther.mGeckoViewSessionContextId.Value()) {
return false;
}

Expand Down
3 changes: 1 addition & 2 deletions docshell/base/BrowsingContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -554,8 +554,7 @@ bool BrowsingContext::CanAccess(BrowsingContext* aTarget,

// A frame can navigate any frame with a same-origin ancestor.
for (BrowsingContext* bc = aTarget; bc; bc = bc->GetParent()) {
if (bc->mDocShell &&
nsDocShell::ValidateOrigin(mDocShell, bc->mDocShell)) {
if (bc->mDocShell && nsDocShell::ValidateOrigin(mDocShell, bc->mDocShell)) {
return true;
}
}
Expand Down
1 change: 0 additions & 1 deletion dom/base/Location.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,6 @@ void Location::Reload(bool aForceget, ErrorResult& aRv) {
}
}


uint32_t reloadFlags = nsIWebNavigation::LOAD_FLAGS_NONE;

if (aForceget) {
Expand Down
11 changes: 5 additions & 6 deletions dom/base/nsContentSink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1483,12 +1483,11 @@ nsresult nsContentSink::WillParseImpl(void) {
uint32_t lastEventTime;
vm->GetLastUserEventTime(lastEventTime);

bool newDynLower =
mDocument->IsInBackgroundWindow() ||
((currentTime - mBeginLoadTime) >
StaticPrefs::content_sink_initial_perf_time() &&
(currentTime - lastEventTime) <
StaticPrefs::content_sink_interactive_time());
bool newDynLower = mDocument->IsInBackgroundWindow() ||
((currentTime - mBeginLoadTime) >
StaticPrefs::content_sink_initial_perf_time() &&
(currentTime - lastEventTime) <
StaticPrefs::content_sink_interactive_time());

if (mDynamicLowerValue != newDynLower) {
FavorPerformanceHint(!newDynLower, 0);
Expand Down
11 changes: 6 additions & 5 deletions dom/html/HTMLInputElement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -772,8 +772,8 @@ nsresult HTMLInputElement::InitFilePicker(FilePickerType aType) {
SetFilePickerFiltersFromAccept(filePicker);

if (StaticPrefs::dom_capture_enabled()) {
const nsAttrValue* captureVal = GetParsedAttr(nsGkAtoms::capture,
kNameSpaceID_None);
const nsAttrValue* captureVal =
GetParsedAttr(nsGkAtoms::capture, kNameSpaceID_None);
if (captureVal) {
filePicker->SetCapture(captureVal->GetEnumValue());
}
Expand Down Expand Up @@ -1341,8 +1341,8 @@ nsresult HTMLInputElement::AfterSetAttr(int32_t aNameSpaceID, nsAtom* aName,
AsyncEventDispatcher* dispatcher = new AsyncEventDispatcher(
dateTimeBoxElement,
aName == nsGkAtoms::value
? NS_LITERAL_STRING("MozDateTimeValueChanged")
: NS_LITERAL_STRING("MozDateTimeAttributeChanged"),
? NS_LITERAL_STRING("MozDateTimeValueChanged")
: NS_LITERAL_STRING("MozDateTimeAttributeChanged"),
CanBubble::eNo, ChromeOnlyDispatch::eNo);
dispatcher->RunDOMEventWhenSafe();
}
Expand Down Expand Up @@ -5254,7 +5254,8 @@ bool HTMLInputElement::ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute,
return aResult.ParseEnumValue(aValue, kInputInputmodeTable, false);
}
if (aAttribute == nsGkAtoms::capture) {
return aResult.ParseEnumValue(aValue, kCaptureTable, false, kCaptureDefault);
return aResult.ParseEnumValue(aValue, kCaptureTable, false,
kCaptureDefault);
}
if (ParseImageAttribute(aAttribute, aValue, aResult)) {
// We have to call |ParseImageAttribute| unconditionally since we
Expand Down
5 changes: 2 additions & 3 deletions dom/html/nsGenericHTMLElement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2682,9 +2682,8 @@ nsresult nsGenericHTMLElement::NewURIFromString(const nsAString& aURISpec,

nsCOMPtr<Document> doc = OwnerDoc();

nsresult rv =
nsContentUtils::NewURIWithDocumentCharset(aURI, aURISpec, doc,
GetBaseURI());
nsresult rv = nsContentUtils::NewURIWithDocumentCharset(aURI, aURISpec, doc,
GetBaseURI());
NS_ENSURE_SUCCESS(rv, rv);

bool equal;
Expand Down
3 changes: 2 additions & 1 deletion dom/html/nsHTMLDocument.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ class nsHTMLDocument : public mozilla::dom::Document {
mozilla::ErrorResult& rv) {
JS::Rooted<JS::Value> v(cx);
if ((aFound = ResolveName(cx, aName, &v, rv))) {
SetDocumentAndPageUseCounter(mozilla::eUseCounter_custom_HTMLDocumentNamedGetterHit);
SetDocumentAndPageUseCounter(
mozilla::eUseCounter_custom_HTMLDocumentNamedGetterHit);
aRetval.set(v.toObjectOrNull());
}
}
Expand Down
3 changes: 2 additions & 1 deletion dom/ipc/WindowGlobalParent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,8 @@ already_AddRefed<Promise> WindowGlobalParent::ChangeFrameRemoteness(
// in-process frame. For remote frames, the BrowserBridgeParent::Init
// method should've already set up the OwnerProcessId.
uint64_t childId = browserParent->Manager()->ChildID();
MOZ_ASSERT_IF(bridge, browsingContext == browserParent->GetBrowsingContext());
MOZ_ASSERT_IF(bridge,
browsingContext == browserParent->GetBrowsingContext());
MOZ_ASSERT_IF(bridge, browsingContext->IsOwnedByProcess(childId));
browsingContext->SetOwnerProcessId(childId);

Expand Down
3 changes: 1 addition & 2 deletions dom/media/MediaDecoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -572,8 +572,7 @@ void MediaDecoder::SetStateMachineParameters() {
mOnNextFrameStatus = mDecoderStateMachine->OnNextFrameStatus().Connect(
mAbstractMainThread, this, &MediaDecoder::OnNextFrameStatus);
mOnStoreDecoderBenchmark = mReader->OnStoreDecoderBenchmark().Connect(
mAbstractMainThread, this,
&MediaDecoder::OnStoreDecoderBenchmark);
mAbstractMainThread, this, &MediaDecoder::OnStoreDecoderBenchmark);

mOnEncrypted = mReader->OnEncrypted().Connect(
mAbstractMainThread, GetOwner(), &MediaDecoderOwner::DispatchEncrypted);
Expand Down
2 changes: 1 addition & 1 deletion dom/media/fuzz/FuzzMedia.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static int FuzzingInitMedia(int* argc, char*** argv) {
#define MOZ_MEDIA_FUZZER(_name) \
static int FuzzingRunMedia##_name(const uint8_t* data, size_t size) { \
if (!size) { \
return 0; \
return 0; \
} \
RefPtr<BufferMediaResource> resource = \
new BufferMediaResource(data, size); \
Expand Down
2 changes: 2 additions & 0 deletions dom/media/mediacapabilities/MediaCapabilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ already_AddRefed<Promise> MediaCapabilities::DecodingInfo(

RefPtr<layers::KnowsCompositor> compositor = GetCompositor();
double frameRate = videoContainer->ExtendedType().GetFramerate().ref();
// clang-format off
promises.AppendElement(InvokeAsync(
taskQueue, __func__,
[taskQueue, frameRate, compositor,
Expand Down Expand Up @@ -375,6 +376,7 @@ already_AddRefed<Promise> MediaCapabilities::DecodingInfo(
return p;
});
}));
// clang-format on
}

auto holder = MakeRefPtr<
Expand Down
3 changes: 2 additions & 1 deletion dom/webbrowserpersist/WebBrowserPersistLocalDocument.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ WebBrowserPersistLocalDocument::GetTitle(nsAString& aTitle) {
}

NS_IMETHODIMP
WebBrowserPersistLocalDocument::GetReferrerInfo(nsIReferrerInfo** aReferrerInfo) {
WebBrowserPersistLocalDocument::GetReferrerInfo(
nsIReferrerInfo** aReferrerInfo) {
*aReferrerInfo = mDocument->GetReferrerInfo();
NS_IF_ADDREF(*aReferrerInfo);
return NS_OK;
Expand Down
3 changes: 2 additions & 1 deletion dom/webbrowserpersist/WebBrowserPersistRemoteDocument.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ WebBrowserPersistRemoteDocument::GetTitle(nsAString& aTitle) {
}

NS_IMETHODIMP
WebBrowserPersistRemoteDocument::GetReferrerInfo(nsIReferrerInfo** aReferrerInfo) {
WebBrowserPersistRemoteDocument::GetReferrerInfo(
nsIReferrerInfo** aReferrerInfo) {
*aReferrerInfo = mAttrs.referrerInfo();
NS_IF_ADDREF(*aReferrerInfo);
return NS_OK;
Expand Down
3 changes: 2 additions & 1 deletion gfx/2d/RecordedEventImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -2711,7 +2711,8 @@ RecordedDrawSurfaceWithShadow::RecordedDrawSurfaceWithShadow(S& aStream)
ReadElement(aStream, mColor);
ReadElement(aStream, mOffset);
ReadElement(aStream, mSigma);
ReadElementConstrained(aStream, mOp, CompositionOp::OP_OVER, CompositionOp::OP_COUNT);
ReadElementConstrained(aStream, mOp, CompositionOp::OP_OVER,
CompositionOp::OP_COUNT);
}

inline void RecordedDrawSurfaceWithShadow::OutputSimpleEventInfo(
Expand Down
9 changes: 5 additions & 4 deletions gfx/2d/ScaledFontDWrite.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ class ScaledFontDWrite final : public ScaledFontBase {
const RefPtr<UnscaledFont>& aUnscaledFont, Float aSize,
bool aUseEmbeddedBitmap,
DWRITE_RENDERING_MODE aRenderingMode,
IDWriteRenderingParams* aParams,
Float aGamma, Float aContrast,
const gfxFontStyle* aStyle = nullptr);
IDWriteRenderingParams* aParams, Float aGamma,
Float aContrast, const gfxFontStyle* aStyle = nullptr);

FontType GetType() const override { return FontType::DWRITE; }

Expand All @@ -64,7 +63,9 @@ class ScaledFontDWrite final : public ScaledFontBase {
AntialiasMode GetDefaultAAMode() override;

bool UseEmbeddedBitmaps() const { return mUseEmbeddedBitmap; }
bool ForceGDIMode() const { return mRenderingMode == DWRITE_RENDERING_MODE_GDI_CLASSIC; }
bool ForceGDIMode() const {
return mRenderingMode == DWRITE_RENDERING_MODE_GDI_CLASSIC;
}
DWRITE_RENDERING_MODE GetRenderingMode() const { return mRenderingMode; }

#ifdef USE_SKIA
Expand Down
6 changes: 1 addition & 5 deletions gfx/2d/Types.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,7 @@ enum class ColorDepth : uint8_t {
UNKNOWN
};

enum class ColorRange : uint8_t {
LIMITED,
FULL,
UNKNOWN
};
enum class ColorRange : uint8_t { LIMITED, FULL, UNKNOWN };

static inline SurfaceFormat SurfaceFormatForColorDepth(ColorDepth aColorDepth) {
SurfaceFormat format = SurfaceFormat::A8;
Expand Down
2 changes: 1 addition & 1 deletion gfx/layers/FrameMetrics.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef GFX_FRAMEMETRICS_H
#define GFX_FRAMEMETRICS_H

#include <stdint.h> // for uint8_t, uint32_t, uint64_t
#include <stdint.h> // for uint8_t, uint32_t, uint64_t
#include "Units.h" // for CSSRect, CSSPixel, etc
#include "mozilla/DefineEnum.h" // for MOZ_DEFINE_ENUM
#include "mozilla/HashFunctions.h" // for HashGeneric
Expand Down
2 changes: 1 addition & 1 deletion gfx/layers/RotatedBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include "mozilla/layers/TextureClient.h" // for TextureClient
#include "mozilla/Move.h" // for Move
#include "mozilla/StaticPrefs_layers.h"
#include "mozilla/gfx/Point.h" // for IntSize
#include "mozilla/gfx/Point.h" // for IntSize
#include "gfx2DGlue.h"
#include "nsLayoutUtils.h" // for invalidation debugging
#include "PaintThread.h"
Expand Down
6 changes: 3 additions & 3 deletions gfx/layers/apz/src/APZCTreeManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2601,15 +2601,15 @@ already_AddRefed<AsyncPanZoomController> APZCTreeManager::GetAPZCAtPointWR(
ScrollableLayerGuid guid{layersId, 0, scrollId};
if (RefPtr<HitTestingTreeNode> node =
GetTargetNode(guid, &GuidComparatorIgnoringPresShell)) {
MOZ_ASSERT(node->GetApzc()); // any node returned must have an APZC
MOZ_ASSERT(node->GetApzc()); // any node returned must have an APZC
result = node->GetApzc();
EventRegionsOverride flags = node->GetEventRegionsOverride();
if (flags & EventRegionsOverride::ForceDispatchToContent) {
hitInfo += CompositorHitTestFlags::eApzAwareListeners;
}
}
APZCTM_LOG("Successfully matched APZC %p (hit result 0x%x)\n",
result.get(), hitInfo.serialize());
APZCTM_LOG("Successfully matched APZC %p (hit result 0x%x)\n", result.get(),
hitInfo.serialize());
if (!result) {
// It falls back to the root
MOZ_ASSERT(scrollId == ScrollableLayerGuid::NULL_SCROLL_ID);
Expand Down
8 changes: 4 additions & 4 deletions gfx/layers/apz/src/APZInputBridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
#include "mozilla/StaticPrefs_apz.h"
#include "mozilla/StaticPrefs_general.h"
#include "mozilla/StaticPrefs_test.h"
#include "mozilla/TextEvents.h" // for WidgetKeyboardEvent
#include "mozilla/TouchEvents.h" // for WidgetTouchEvent
#include "mozilla/WheelHandlingHelper.h" // for WheelDeltaHorizontalizer,
// WheelDeltaAdjustmentStrategy
#include "mozilla/TextEvents.h" // for WidgetKeyboardEvent
#include "mozilla/TouchEvents.h" // for WidgetTouchEvent
#include "mozilla/WheelHandlingHelper.h" // for WheelDeltaHorizontalizer,
// WheelDeltaAdjustmentStrategy

namespace mozilla {
namespace layers {
Expand Down
4 changes: 2 additions & 2 deletions gfx/layers/apz/src/AsyncPanZoomController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
#include "mozilla/StaticPrefs_slider.h"
#include "mozilla/StaticPrefs_test.h"
#include "mozilla/StaticPrefs_toolkit.h"
#include "mozilla/Telemetry.h" // for Telemetry
#include "mozilla/TimeStamp.h" // for TimeDuration, TimeStamp
#include "mozilla/Telemetry.h" // for Telemetry
#include "mozilla/TimeStamp.h" // for TimeDuration, TimeStamp
#include "mozilla/dom/CheckerboardReportService.h" // for CheckerboardEventStorage
// note: CheckerboardReportService.h actually lives in gfx/layers/apz/util/
#include "mozilla/dom/Touch.h" // for Touch
Expand Down
4 changes: 2 additions & 2 deletions gfx/layers/apz/src/FocusTarget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#include "mozilla/EventDispatcher.h" // for EventDispatcher
#include "mozilla/PresShell.h" // For PresShell
#include "mozilla/StaticPrefs_apz.h"
#include "nsIContentInlines.h" // for nsINode::IsEditable()
#include "nsLayoutUtils.h" // for nsLayoutUtils
#include "nsIContentInlines.h" // for nsINode::IsEditable()
#include "nsLayoutUtils.h" // for nsLayoutUtils

#define ENABLE_FT_LOGGING 0
// #define ENABLE_FT_LOGGING 1
Expand Down
4 changes: 2 additions & 2 deletions gfx/layers/apz/src/GestureEventListener.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#include "InputBlockState.h" // for TouchBlockState
#include "mozilla/StaticPrefs_apz.h"
#include "mozilla/StaticPrefs_ui.h"
#include "nsDebug.h" // for NS_WARNING
#include "nsMathUtils.h" // for NS_hypot
#include "nsDebug.h" // for NS_WARNING
#include "nsMathUtils.h" // for NS_hypot

#define GEL_LOG(...)
// #define GEL_LOG(...) printf_stderr("GEL: " __VA_ARGS__)
Expand Down
3 changes: 2 additions & 1 deletion gfx/layers/apz/src/InputQueue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ nsEventStatus InputQueue::ReceiveScrollWheelInput(

if (!block) {
block = new WheelBlockState(aTarget, aFlags, aEvent);
INPQ_LOG("started new scroll wheel block %p id %" PRIu64 " for %starget %p\n",
INPQ_LOG("started new scroll wheel block %p id %" PRIu64
" for %starget %p\n",
block, block->GetBlockId(),
aFlags.mTargetConfirmed ? "confirmed " : "", aTarget.get());

Expand Down
10 changes: 5 additions & 5 deletions gfx/layers/basic/BasicLayerManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
#include "gfxMatrix.h" // for gfxMatrix
#include "gfxPlatform.h" // for gfxPlatform

#include "gfxPoint.h" // for IntSize, gfxPoint
#include "gfxRect.h" // for gfxRect
#include "gfxUtils.h" // for gfxUtils
#include "gfx2DGlue.h" // for thebes --> moz2d transition
#include "mozilla/Assertions.h" // for MOZ_ASSERT, etc
#include "gfxPoint.h" // for IntSize, gfxPoint
#include "gfxRect.h" // for gfxRect
#include "gfxUtils.h" // for gfxUtils
#include "gfx2DGlue.h" // for thebes --> moz2d transition
#include "mozilla/Assertions.h" // for MOZ_ASSERT, etc
#include "mozilla/StaticPrefs_nglayout.h"
#include "mozilla/WidgetUtils.h" // for ScreenRotation
#include "mozilla/gfx/2D.h" // for DrawTarget
Expand Down
6 changes: 3 additions & 3 deletions gfx/layers/client/ClientLayerManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

#include <stdint.h> // for int32_t
#include "Layers.h"
#include "gfxContext.h" // for gfxContext
#include "mozilla/Attributes.h" // for override
#include "mozilla/LinkedList.h" // for LinkedList
#include "gfxContext.h" // for gfxContext
#include "mozilla/Attributes.h" // for override
#include "mozilla/LinkedList.h" // for LinkedList
#include "mozilla/StaticPrefs_apz.h"
#include "mozilla/WidgetUtils.h" // for ScreenRotation
#include "mozilla/gfx/Rect.h" // for Rect
Expand Down
14 changes: 7 additions & 7 deletions gfx/layers/client/ClientTiledPaintedLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
* You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "ClientTiledPaintedLayer.h"
#include "FrameMetrics.h" // for FrameMetrics
#include "Units.h" // for ScreenIntRect, CSSPoint, etc
#include "UnitTransforms.h" // for TransformTo
#include "ClientLayerManager.h" // for ClientLayerManager, etc
#include "gfxPlatform.h" // for gfxPlatform
#include "gfxRect.h" // for gfxRect
#include "mozilla/Assertions.h" // for MOZ_ASSERT, etc
#include "FrameMetrics.h" // for FrameMetrics
#include "Units.h" // for ScreenIntRect, CSSPoint, etc
#include "UnitTransforms.h" // for TransformTo
#include "ClientLayerManager.h" // for ClientLayerManager, etc
#include "gfxPlatform.h" // for gfxPlatform
#include "gfxRect.h" // for gfxRect
#include "mozilla/Assertions.h" // for MOZ_ASSERT, etc
#include "mozilla/StaticPrefs_layers.h"
#include "mozilla/StaticPrefs_layout.h"
#include "mozilla/gfx/BaseSize.h" // for BaseSize
Expand Down
6 changes: 3 additions & 3 deletions gfx/layers/client/TiledContentClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
#include "gfxRect.h" // for gfxRect
#include "mozilla/MathAlgorithms.h" // for Abs
#include "mozilla/StaticPrefs_apz.h"
#include "mozilla/gfx/Point.h" // for IntSize
#include "mozilla/gfx/Rect.h" // for Rect
#include "mozilla/gfx/Tools.h" // for BytesPerPixel
#include "mozilla/gfx/Point.h" // for IntSize
#include "mozilla/gfx/Rect.h" // for Rect
#include "mozilla/gfx/Tools.h" // for BytesPerPixel
#include "mozilla/layers/CompositableForwarder.h"
#include "mozilla/layers/CompositorBridgeChild.h" // for CompositorBridgeChild
#include "mozilla/layers/LayerMetricsWrapper.h"
Expand Down
8 changes: 4 additions & 4 deletions gfx/layers/composite/AsyncCompositionManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
#include "mozilla/ServoBindings.h" // for Servo_AnimationValue_GetOpacity, etc
#include "mozilla/StaticPrefs_apz.h"
#include "mozilla/StaticPrefs_gfx.h"
#include "mozilla/WidgetUtils.h" // for ComputeTransformForRotation
#include "mozilla/gfx/BaseRect.h" // for BaseRect
#include "mozilla/gfx/Point.h" // for RoundedToInt, PointTyped
#include "mozilla/gfx/Rect.h" // for RoundedToInt, RectTyped
#include "mozilla/WidgetUtils.h" // for ComputeTransformForRotation
#include "mozilla/gfx/BaseRect.h" // for BaseRect
#include "mozilla/gfx/Point.h" // for RoundedToInt, PointTyped
#include "mozilla/gfx/Rect.h" // for RoundedToInt, RectTyped
#include "mozilla/gfx/ScaleFactor.h" // for ScaleFactor
#include "mozilla/layers/AnimationHelper.h"
#include "mozilla/layers/APZSampler.h" // for APZSampler
Expand Down
Loading

0 comments on commit 645f2d5

Please sign in to comment.