mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
53 lines
1.7 KiB
C++
53 lines
1.7 KiB
C++
/* -*- Mode: c++; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
* 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 AndroidContentController_h__
|
|
#define AndroidContentController_h__
|
|
|
|
#include "mozilla/layers/ChromeProcessController.h"
|
|
#include "mozilla/EventForwards.h" // for Modifiers
|
|
#include "mozilla/StaticPtr.h"
|
|
#include "mozilla/TimeStamp.h"
|
|
#include "GeneratedJNIWrappers.h"
|
|
#include "nsIDOMWindowUtils.h"
|
|
#include "nsTArray.h"
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
class APZEventState;
|
|
class APZCTreeManager;
|
|
}
|
|
namespace widget {
|
|
namespace android {
|
|
|
|
class AndroidContentController final : public mozilla::layers::ChromeProcessController
|
|
{
|
|
public:
|
|
AndroidContentController(nsIWidget* aWidget,
|
|
mozilla::layers::APZEventState* aAPZEventState,
|
|
mozilla::layers::APZCTreeManager* aAPZCTreeManager)
|
|
: mozilla::layers::ChromeProcessController(aWidget, aAPZEventState, aAPZCTreeManager)
|
|
{}
|
|
|
|
// ChromeProcessController methods
|
|
void HandleSingleTap(const CSSPoint& aPoint,
|
|
Modifiers aModifiers,
|
|
const ScrollableLayerGuid& aGuid) override;
|
|
void PostDelayedTask(Task* aTask, int aDelayMs) override;
|
|
|
|
public:
|
|
static NativePanZoomController::LocalRef SetNativePanZoomController(NativePanZoomController::Param obj);
|
|
static void NotifyDefaultPrevented(uint64_t aInputBlockId, bool aDefaultPrevented);
|
|
|
|
private:
|
|
static NativePanZoomController::GlobalRef sNativePanZoomController;
|
|
};
|
|
|
|
} // namespace android
|
|
} // namespace widget
|
|
} // namespace mozilla
|
|
|
|
#endif
|