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

Unified Diff: ipc/ipc_listener.cc

Issue 10541065: Separate out IPC::Message::Sender and channel::Listener into a separate class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tar xfz warez.tgz Created 8 years, 6 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 | « ipc/ipc_listener.h ('k') | ipc/ipc_logging.h » ('j') | ipc/ipc_sender.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_listener.cc
diff --git a/ipc/ipc_listener.cc b/ipc/ipc_listener.cc
new file mode 100644
index 0000000000000000000000000000000000000000..297c70a306b5f63c93769d4906fa49f4ba56ace7
--- /dev/null
+++ b/ipc/ipc_listener.cc
@@ -0,0 +1,26 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
jam 2012/06/11 01:56:29 nit: you don't need this file since you can inline
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ipc/ipc_listener.h"
+
+namespace IPC {
+
+Listener::~Listener() {
+}
+
+void Listener::OnChannelConnected(int32 peer_pid) {
+}
+
+void Listener::OnChannelError() {
+}
+
+#if defined(OS_POSIX)
+void Listener::OnChannelDenied() {
+}
+
+void Listener::OnChannelListenError() {
+}
+#endif
+
+} // namespace IPC
« no previous file with comments | « ipc/ipc_listener.h ('k') | ipc/ipc_logging.h » ('j') | ipc/ipc_sender.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698