// Copyright 2021 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_OPEN_URL_URL_FORWARDER_CONTROL_MESSAGE_HANDLER_H_ #define REMOTING_HOST_REMOTE_OPEN_URL_URL_FORWARDER_CONTROL_MESSAGE_HANDLER_H_ #include "remoting/protocol/named_message_pipe_handler.h" #include <memory> #include "base/memory/weak_ptr.h" #include "remoting/proto/url_forwarder_control.pb.h" namespace remoting { class UrlForwarderConfigurator; // Message handler for the url-forwarder-control data channel. class UrlForwarderControlMessageHandler final : public protocol::NamedMessagePipeHandler { … }; } // namespace remoting #endif // REMOTING_HOST_REMOTE_OPEN_URL_URL_FORWARDER_CONTROL_MESSAGE_HANDLER_H_