blob: 8b2b3bedbe63ca9166056987e68b7a47e6e70646 (
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
|
// Copyright 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.
#include "content/browser/renderer_host/input/synthetic_gesture.h"
#include "base/logging.h"
#include "content/browser/renderer_host/input/synthetic_gesture_target.h"
#include "content/browser/renderer_host/input/synthetic_pinch_gesture.h"
#include "content/browser/renderer_host/input/synthetic_smooth_scroll_gesture.h"
#include "content/browser/renderer_host/input/synthetic_tap_gesture.h"
namespace content {
namespace {
template <typename GestureType, typename GestureParamsType>
static scoped_ptr<SyntheticGesture> CreateGesture(
const SyntheticGestureParams& gesture_params) {
return scoped_ptr<SyntheticGesture>(
new GestureType(*GestureParamsType::Cast(&gesture_params)));
}
} // namespace
SyntheticGesture::SyntheticGesture() {}
SyntheticGesture::~SyntheticGesture() {}
scoped_ptr<SyntheticGesture> SyntheticGesture::Create(
const SyntheticGestureParams& gesture_params) {
switch (gesture_params.GetGestureType()) {
case SyntheticGestureParams::SMOOTH_SCROLL_GESTURE:
return CreateGesture<SyntheticSmoothScrollGesture,
SyntheticSmoothScrollGestureParams>(gesture_params);
case SyntheticGestureParams::PINCH_GESTURE:
return CreateGesture<SyntheticPinchGesture,
SyntheticPinchGestureParams>(gesture_params);
case SyntheticGestureParams::TAP_GESTURE:
return CreateGesture<SyntheticTapGesture,
SyntheticTapGestureParams>(gesture_params);
}
NOTREACHED() << "Invalid synthetic gesture type";
return scoped_ptr<SyntheticGesture>();
}
} // namespace content
|