chromium/ui/views/input_event_activation_protector.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {

InputEventActivationProtector::InputEventActivationProtector() {}

InputEventActivationProtector::~InputEventActivationProtector() {}

void InputEventActivationProtector::VisibilityChanged(bool is_visible) {}

void InputEventActivationProtector::MaybeUpdateViewProtectedTimeStamp(
    bool force) {}

bool InputEventActivationProtector::IsPossiblyUnintendedInteraction(
    const ui::Event& event) {}

void InputEventActivationProtector::OnWindowStationaryStateChanged() {}

void InputEventActivationProtector::ResetForTesting() {}

}  // namespace views