blob: 82edd0a19c29dbcdd4a94cf789dbe3ca6193ab3c (
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
|
// Copyright 2019 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 COMPONENTS_EXO_RELATIVE_POINTER_DELEGATE_H_
#define COMPONENTS_EXO_RELATIVE_POINTER_DELEGATE_H_
#include "base/time/time.h"
namespace exo {
class Pointer;
// Handles sending relative mouse movements.
class RelativePointerDelegate {
public:
// Called at the top of the pointer's destructor, to give observers a
// chance to remove themselves.
virtual void OnPointerDestroying(Pointer* pointer) = 0;
virtual void OnPointerRelativeMotion(base::TimeTicks time_stamp,
const gfx::PointF& relativeMotion) = 0;
protected:
virtual ~RelativePointerDelegate() {}
};
} // namespace exo
#endif // COMPONENTS_EXO_RELATIVE_POINTER_DELEGATE_H_
|