blob: bdacd4758f9c8a0ccd20a2f8938d005c4abb839d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// 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 "base/basictypes.h"
#include "base/compiler_specific.h"
namespace IPC {
class Message;
} // namespace IPC
namespace remoting {
// An interface representing the object receiving IPC messages from a worker
// process.
class WorkerProcessIpcDelegate {
 public:
  virtual ~WorkerProcessIpcDelegate() {}
  // Notifies that a client has been connected to the channel.
  virtual void OnChannelConnected(int32 peer_pid) = 0;
  // Processes messages sent by the client.
  virtual bool OnMessageReceived(const IPC::Message& message) = 0;
  // Notifies that a permanent error was encountered.
  virtual void OnPermanentError(int exit_code) = 0;
};
}  // namespace remoting
#endif  // REMOTING_HOST_WORKER_PROCESS_IPC_DELEGATE_H_
 |