// 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_WORKER_PROCESS_IPC_DELEGATE_H_ #define REMOTING_HOST_WORKER_PROCESS_IPC_DELEGATE_H_ #include <string> #include <stdint.h> #include "base/compiler_specific.h" namespace mojo { class ScopedInterfaceEndpointHandle; } // namespace mojo namespace remoting { // An interface representing the object receiving IPC messages from a worker // process. class WorkerProcessIpcDelegate { … }; } // namespace remoting #endif // REMOTING_HOST_WORKER_PROCESS_IPC_DELEGATE_H_