Commit d20ac764 authored by Henrique Ferreiro's avatar Henrique Ferreiro Committed by Commit Bot

Remove unused blink::WebActiveFlingParameters

Bug: 919392
Change-Id: Idbc7d23d127027834c70f09821ae0f389ce260be
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1876347Reviewed-by: default avatarKentaro Hara <haraken@chromium.org>
Reviewed-by: default avatarJochen Eisinger <jochen@chromium.org>
Commit-Queue: Henrique Ferreiro <hferreiro@igalia.com>
Cr-Commit-Position: refs/heads/master@{#709761}
parent 8a702487
...@@ -393,7 +393,6 @@ source_set("blink_headers") { ...@@ -393,7 +393,6 @@ source_set("blink_headers") {
"web/modules/webrtc/webrtc_audio_device_impl.h", "web/modules/webrtc/webrtc_audio_device_impl.h",
"web/modules/webrtc/webrtc_audio_device_not_impl.h", "web/modules/webrtc/webrtc_audio_device_not_impl.h",
"web/modules/webrtc/webrtc_audio_renderer.h", "web/modules/webrtc/webrtc_audio_renderer.h",
"web/web_active_fling_parameters.h",
"web/web_array_buffer.h", "web/web_array_buffer.h",
"web/web_array_buffer_converter.h", "web/web_array_buffer_converter.h",
"web/web_associated_url_loader.h", "web/web_associated_url_loader.h",
......
/*
* Copyright (C) 2012 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef THIRD_PARTY_BLINK_PUBLIC_WEB_WEB_ACTIVE_FLING_PARAMETERS_H_
#define THIRD_PARTY_BLINK_PUBLIC_WEB_WEB_ACTIVE_FLING_PARAMETERS_H_
#include "base/time/time.h"
#include "third_party/blink/public/platform/web_common.h"
#include "third_party/blink/public/platform/web_float_point.h"
#include "third_party/blink/public/platform/web_gesture_device.h"
#include "third_party/blink/public/platform/web_point.h"
#include "third_party/blink/public/platform/web_size.h"
namespace blink {
struct WebActiveFlingParameters {
WebFloatPoint delta;
WebFloatPoint point;
WebFloatPoint global_point;
int modifiers;
WebGestureDevice source_device;
WebSize cumulative_scroll;
base::TimeTicks start_time;
WebActiveFlingParameters()
: modifiers(0), source_device(WebGestureDevice::kTouchpad) {}
};
} // namespace blink
#endif
...@@ -17,7 +17,6 @@ include_rules = [ ...@@ -17,7 +17,6 @@ include_rules = [
"+third_party/blink/public/platform/web_point.h", "+third_party/blink/public/platform/web_point.h",
"+third_party/blink/public/platform/web_pointer_event.h", "+third_party/blink/public/platform/web_pointer_event.h",
"+third_party/blink/public/platform/web_touch_event.h", "+third_party/blink/public/platform/web_touch_event.h",
"+third_party/blink/public/web/web_active_fling_parameters.h",
"+ui/display/win", "+ui/display/win",
"+ui/gfx", "+ui/gfx",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment