blob: d2cd3ccf445481bd004c1c5de5a5d6e1815c918a (
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
|
// Copyright (c) 2013 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 CONTENT_BROWSER_RENDERER_HOST_TOUCHPAD_TAP_SUPPRESSION_CONTROLLER_H_
#define CONTENT_BROWSER_RENDERER_HOST_TOUCHPAD_TAP_SUPPRESSION_CONTROLLER_H_
#include "base/memory/scoped_ptr.h"
#include "content/browser/renderer_host/tap_suppression_controller_client.h"
#include "content/port/browser/event_with_latency_info.h"
#include "third_party/WebKit/public/web/WebInputEvent.h"
namespace content {
class RenderWidgetHostImpl;
class TapSuppressionController;
// Controls the suppression of touchpad taps immediately following the dispatch
// of a GestureFlingCancel event.
class TouchpadTapSuppressionController : public TapSuppressionControllerClient {
public:
explicit TouchpadTapSuppressionController(RenderWidgetHostImpl* rwhv);
virtual ~TouchpadTapSuppressionController();
// Should be called on arrival of GestureFlingCancel events.
void GestureFlingCancel();
// Should be called on arrival of ACK for a GestureFlingCancel event.
// |processed| is true if the GestureFlingCancel successfully stopped a fling.
void GestureFlingCancelAck(bool processed);
// Should be called on arrival of MouseDown events. Returns true if the caller
// should stop normal handling of the MouseDown. In this case, the caller is
// responsible for saving the event for later use, if needed.
bool ShouldDeferMouseDown(const MouseEventWithLatencyInfo& event);
// Should be called on arrival of MouseUp events. Returns true if the caller
// should stop normal handling of the MouseUp.
bool ShouldSuppressMouseUp();
private:
friend class MockRenderWidgetHost;
// TapSuppressionControllerClient implementation.
virtual int MaxCancelToDownTimeInMs() OVERRIDE;
virtual int MaxTapGapTimeInMs() OVERRIDE;
virtual void DropStashedTapDown() OVERRIDE;
virtual void ForwardStashedTapDownForDeferral() OVERRIDE;
virtual void ForwardStashedTapDownSkipDeferral() OVERRIDE;
RenderWidgetHostImpl* render_widget_host_;
MouseEventWithLatencyInfo stashed_mouse_down_;
// The core controller of tap suppression.
scoped_ptr<TapSuppressionController> controller_;
DISALLOW_COPY_AND_ASSIGN(TouchpadTapSuppressionController);
};
} // namespace content
#endif // CONTENT_BROWSER_RENDERER_HOST_TOUCHPAD_TAP_SUPPRESSION_CONTROLLER_H_
|