chromium/remoting/host/remote_open_url/remote_open_url_message_handler.h

// 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_REMOTE_OPEN_URL_MESSAGE_HANDLER_H_
#define REMOTING_HOST_REMOTE_OPEN_URL_REMOTE_OPEN_URL_MESSAGE_HANDLER_H_

#include <memory>

#include "base/containers/flat_map.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "remoting/host/mojom/remote_url_opener.mojom.h"
#include "remoting/proto/remote_open_url.pb.h"
#include "remoting/protocol/named_message_pipe_handler.h"

class GURL;

namespace remoting {

class RemoteOpenUrlMessageHandler final
    : public mojom::RemoteUrlOpener,
      public protocol::NamedMessagePipeHandler {};

}  // namespace remoting

#endif  // REMOTING_HOST_REMOTE_OPEN_URL_REMOTE_OPEN_URL_MESSAGE_HANDLER_H_