summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/util/ContentProcessController.cpp
blob: 332d0523fe930becfcc5b73f94fc8789babc0b6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* -*- 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/. */

#include "ContentProcessController.h"

#include "mozilla/PresShell.h"
#include "mozilla/dom/BrowserChild.h"
#include "mozilla/layers/APZCCallbackHelper.h"
#include "mozilla/layers/APZChild.h"
#include "nsIContentInlines.h"

#include "InputData.h"  // for InputData

namespace mozilla {
namespace layers {

ContentProcessController::ContentProcessController(
    const RefPtr<dom::BrowserChild>& aBrowser)
    : mBrowser(aBrowser) {
  MOZ_ASSERT(mBrowser);
}

void ContentProcessController::NotifyLayerTransforms(
    nsTArray<MatrixMessage>&& aTransforms) {
  // This should never get called
  MOZ_ASSERT(false);
}

void ContentProcessController::RequestContentRepaint(
    const RepaintRequest& aRequest) {
  if (mBrowser) {
    mBrowser->UpdateFrame(aRequest);
  }
}

void ContentProcessController::HandleTap(TapType aType,
                                         const LayoutDevicePoint& aPoint,
                                         Modifiers aModifiers,
                                         const ScrollableLayerGuid& aGuid,
                                         uint64_t aInputBlockId) {
  // This should never get called
  MOZ_ASSERT(false);
}

void ContentProcessController::NotifyPinchGesture(
    PinchGestureInput::PinchGestureType aType, const ScrollableLayerGuid& aGuid,
    const LayoutDevicePoint& aFocusPoint, LayoutDeviceCoord aSpanChange,
    Modifiers aModifiers) {
  // This should never get called
  MOZ_ASSERT_UNREACHABLE("Unexpected message to content process");
}

void ContentProcessController::NotifyAPZStateChange(
    const ScrollableLayerGuid& aGuid, APZStateChange aChange, int aArg,
    Maybe<uint64_t> aInputBlockId) {
  if (mBrowser) {
    mBrowser->NotifyAPZStateChange(aGuid.mScrollId, aChange, aArg,
                                   aInputBlockId);
  }
}

void ContentProcessController::NotifyMozMouseScrollEvent(
    const ScrollableLayerGuid::ViewID& aScrollId, const nsString& aEvent) {
  if (mBrowser) {
    APZCCallbackHelper::NotifyMozMouseScrollEvent(aScrollId, aEvent);
  }
}

void ContentProcessController::NotifyFlushComplete() {
  if (mBrowser) {
    RefPtr<PresShell> presShell = mBrowser->GetTopLevelPresShell();
    APZCCallbackHelper::NotifyFlushComplete(presShell);
  }
}

void ContentProcessController::NotifyAsyncScrollbarDragInitiated(
    uint64_t aDragBlockId, const ScrollableLayerGuid::ViewID& aScrollId,
    ScrollDirection aDirection) {
  APZCCallbackHelper::NotifyAsyncScrollbarDragInitiated(aDragBlockId, aScrollId,
                                                        aDirection);
}

void ContentProcessController::NotifyAsyncScrollbarDragRejected(
    const ScrollableLayerGuid::ViewID& aScrollId) {
  APZCCallbackHelper::NotifyAsyncScrollbarDragRejected(aScrollId);
}

void ContentProcessController::NotifyAsyncAutoscrollRejected(
    const ScrollableLayerGuid::ViewID& aScrollId) {
  APZCCallbackHelper::NotifyAsyncAutoscrollRejected(aScrollId);
}

void ContentProcessController::CancelAutoscroll(
    const ScrollableLayerGuid& aGuid) {
  // This should never get called
  MOZ_ASSERT_UNREACHABLE("Unexpected message to content process");
}

void ContentProcessController::NotifyScaleGestureComplete(
    const ScrollableLayerGuid& aGuid, float aScale) {
  // This should never get called
  MOZ_ASSERT_UNREACHABLE("Unexpected message to content process");
}

bool ContentProcessController::IsRepaintThread() { return NS_IsMainThread(); }

void ContentProcessController::DispatchToRepaintThread(
    already_AddRefed<Runnable> aTask) {
  NS_DispatchToMainThread(std::move(aTask));
}

PresShell* ContentProcessController::GetTopLevelPresShell() const {
  if (!mBrowser) {
    return nullptr;
  }
  return mBrowser->GetTopLevelPresShell();
}

}  // namespace layers
}  // namespace mozilla