// 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_PROTOCOL_HOST_EVENT_DISPATCHER_H_ #define REMOTING_PROTOCOL_HOST_EVENT_DISPATCHER_H_ #include <stdint.h> #include "base/memory/raw_ptr.h" #include "remoting/protocol/channel_dispatcher_base.h" #include "remoting/protocol/input_event_timestamps.h" namespace remoting::protocol { class InputStub; // HostEventDispatcher dispatches incoming messages on the event channel to // InputStub. class HostEventDispatcher : public ChannelDispatcherBase { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_HOST_EVENT_DISPATCHER_H_