Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Unified Diff: remoting/host/worker_process_ipc_delegate.h

Issue 10855249: [Chromoting] The daemon process now starts the networking process and passes the host configuration… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing signal.h Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/win/wts_session_process_launcher.cc ('k') | remoting/remoting.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/worker_process_ipc_delegate.h
diff --git a/remoting/host/worker_process_ipc_delegate.h b/remoting/host/worker_process_ipc_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..6a8ff583e0d782730beceba5b522e7e5a2ad2f58
--- /dev/null
+++ b/remoting/host/worker_process_ipc_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_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() = 0;
+
+ // Processes messages sent by the client.
+ virtual bool OnMessageReceived(const IPC::Message& message) = 0;
+};
+
+} // namespace remoting
+
+#endif // REMOTING_HOST_WORKER_PROCESS_IPC_DELEGATE_H_
« no previous file with comments | « remoting/host/win/wts_session_process_launcher.cc ('k') | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698