| Index: content/common/input/gesture_event_stream_validator.cc
|
| diff --git a/content/common/input/gesture_event_stream_validator.cc b/content/common/input/gesture_event_stream_validator.cc
|
| index 1afb23e87fc8f4028a1b24cd54f00ab664708842..ef808246fafd41126c11cb2564f0d4ad0a6d4e23 100644
|
| --- a/content/common/input/gesture_event_stream_validator.cc
|
| +++ b/content/common/input/gesture_event_stream_validator.cc
|
| @@ -25,9 +25,8 @@ bool GestureEventStreamValidator::Validate(const blink::WebGestureEvent& event,
|
| DCHECK(error_msg);
|
| error_msg->clear();
|
| if (!WebInputEvent::isGestureEventType(event.type)) {
|
| - error_msg->append(
|
| - base::StringPrintf("Invalid gesture type: %s",
|
| - ui::WebInputEventTraits::GetName(event.type)));
|
| + error_msg->append(base::StringPrintf("Invalid gesture type: %s",
|
| + WebInputEvent::GetName(event.type)));
|
| }
|
| switch (event.type) {
|
| case WebInputEvent::GestureScrollBegin:
|
|
|