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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // 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
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ipc/ipc_listener.h"
6
7 namespace IPC {
8
9 Listener::~Listener() {
10 }
11
12 void Listener::OnChannelConnected(int32 peer_pid) {
13 }
14
15 void Listener::OnChannelError() {
16 }
17
18 #if defined(OS_POSIX)
19 void Listener::OnChannelDenied() {
20 }
21
22 void Listener::OnChannelListenError() {
23 }
24 #endif
25
26 } // namespace IPC
OLDNEW
« 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