blob: f5a2679f36bf85a81a0496987b746ad95ba782db [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_EVENTS_BLINK_SYNCHRONOUS_INPUT_HANDLER_PROXY_H_
#define UI_EVENTS_BLINK_SYNCHRONOUS_INPUT_HANDLER_PROXY_H_
#include "base/time/time.h"
namespace gfx {
class Point;
class ScrollOffset;
class SizeF;
}
namespace ui {
class SynchronousInputHandler {
public:
virtual ~SynchronousInputHandler() {}
// Informs the Android WebView embedder of the current root scroll and page
// scale state.
virtual void UpdateRootLayerState(
const gfx::ScrollOffset& total_scroll_offset,
const gfx::ScrollOffset& max_scroll_offset,
const gfx::SizeF& scrollable_size,
float page_scale_factor,
float min_page_scale_factor,
float max_page_scale_factor) = 0;
};
// Android WebView requires synchronous scrolling from the WebView application.
// This interface provides support for that behaviour. The WebView embedder will
// act as the InputHandler for controlling the timing of input (fling)
// animations.
class SynchronousInputHandlerProxy {
public:
virtual ~SynchronousInputHandlerProxy() {}
// SynchronousInputHandler needs to be informed of root layer updates.
virtual void SetSynchronousInputHandler(
SynchronousInputHandler* synchronous_input_handler) = 0;
// Called when the synchronous input handler wants to change the root scroll
// offset. Since it has the final say, this overrides values from compositor-
// controlled behaviour. After the offset is applied, the
// SynchronousInputHandler should be given back the result in case it differs
// from what was sent.
virtual void SynchronouslySetRootScrollOffset(
const gfx::ScrollOffset& root_offset) = 0;
// Similar to SetRootScrollOffset above, to control the zoom level, ie scale
// factor. Note |magnify_delta| is an incremental rather than absolute value.
// SynchronousInputHandler should be given back the resulting absolute value.
virtual void SynchronouslyZoomBy(float magnify_delta,
const gfx::Point& anchor) = 0;
};
} // namespace ui
#endif // UI_EVENTS_BLINK_SYNCHRONOUS_INPUT_HANDLER_PROXY_H_