Chromium Code Reviews| Index: remoting/host/worker_process_delegate.h |
| diff --git a/remoting/host/worker_process_delegate.h b/remoting/host/worker_process_delegate.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fec1cf8cd8e0855516009f7a934b13c4656d37e9 |
| --- /dev/null |
| +++ b/remoting/host/worker_process_delegate.h |
| @@ -0,0 +1,32 @@ |
| +// 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_DELEGATE_H_ |
| +#define REMOTING_HOST_WORKER_PROCESS_DELEGATE_H_ |
| + |
| +#include "base/basictypes.h" |
| +#include "base/compiler_specific.h" |
| + |
| +namespace IPC { |
| +class Message; |
| +} // namespace IPC |
| + |
| +namespace remoting { |
| + |
| +// An interface representing a worker process that is connected via an IPC |
| +// channel. |
|
Wez
2012/08/30 20:36:04
From the caller's perspective the worker process i
alexeypa (please no reviews)
2012/08/30 23:15:13
Done.
|
| +class WorkerProcessDelegate { |
|
Wez
2012/08/30 20:36:04
WorkerProcessDelegate -> WorkerIpcDelegate, or jus
alexeypa (please no reviews)
2012/08/30 23:15:13
WorkerProcessIpcDelegate.
|
| + public: |
| + virtual ~WorkerProcessDelegate() {} |
| + |
| + // Notifies that a client has been connected to the channel. |
| + virtual void OnChannelConnected() = 0; |
| + |
| + // Processes messages sent by the client. |
| + virtual bool OnMessageReceived(const IPC::Message& message) = 0; |
| +}; |
| + |
| +} // namespace remoting |
| + |
| +#endif // REMOTING_HOST_WORKER_PROCESS_DELEGATE_H_ |