chromium/remoting/host/ipc_action_executor.h

// 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.

#ifndef REMOTING_HOST_IPC_ACTION_EXECUTOR_H_
#define REMOTING_HOST_IPC_ACTION_EXECUTOR_H_

#include "base/memory/scoped_refptr.h"
#include "remoting/host/action_executor.h"
#include "remoting/proto/action.pb.h"

namespace remoting {

class DesktopSessionProxy;

// Routes ActionExecutor calls though the IPC channel to the desktop session
// agent running in the desktop integration process.
class IpcActionExecutor : public ActionExecutor {};

}  // namespace remoting

#endif  // REMOTING_HOST_IPC_ACTION_EXECUTOR_H_