// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_HOST_REMOTE_INPUT_FILTER_H_ #define REMOTING_HOST_REMOTE_INPUT_FILTER_H_ #include <list> #include "base/compiler_specific.h" #include "base/memory/raw_ptr.h" #include "base/time/time.h" #include "remoting/protocol/input_event_tracker.h" #include "remoting/protocol/input_stub.h" #include "ui/events/event.h" namespace remoting { // Filtering InputStub that filters remotely-injected input if it has been // notified of local input recently. class RemoteInputFilter : public protocol::InputStub { … }; } // namespace remoting #endif // REMOTING_HOST_REMOTE_INPUT_FILTER_H_