#include "ui/views/input_event_activation_protector.h"
#include "base/command_line.h"
#include "ui/events/event.h"
#include "ui/views/metrics.h"
#include "ui/views/views_switches.h"
namespace views {
void InputEventActivationProtector::VisibilityChanged(bool is_visible) {
if (is_visible)
view_shown_time_stamp_ = base::TimeTicks::Now();
}
void InputEventActivationProtector::UpdateViewShownTimeStamp() {
if (view_shown_time_stamp_ == base::TimeTicks())
return;
view_shown_time_stamp_ = base::TimeTicks::Now();
}
bool InputEventActivationProtector::IsPossiblyUnintendedInteraction(
const ui::Event& event) {
if (UNLIKELY(base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableInputEventActivationProtectionForTesting))) {
return false;
}
if (view_shown_time_stamp_ == base::TimeTicks()) {
return false;
}
if (event.IsKeyEvent() && event.AsKeyEvent()->is_repeat())
return true;
if (!event.IsMouseEvent() && !event.IsTouchEvent() &&
!event.IsGestureEvent()) {
return false;
}
const base::TimeDelta kShortInterval =
base::Milliseconds(GetDoubleClickInterval());
const bool short_event_after_last_event =
event.time_stamp() < last_event_timestamp_ + kShortInterval;
last_event_timestamp_ = event.time_stamp();
if (short_event_after_last_event) {
repeated_event_count_++;
return true;
}
repeated_event_count_ = 0;
return event.time_stamp() < view_shown_time_stamp_ + kShortInterval;
}
void InputEventActivationProtector::ResetForTesting() {
view_shown_time_stamp_ = base::TimeTicks();
last_event_timestamp_ = base::TimeTicks();
repeated_event_count_ = 0;
}
}