summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel.h
diff options
context:
space:
mode:
authorskerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 23:20:24 +0000
committerskerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 23:20:24 +0000
commit445623e613be115931b6b83dfa5f46d471fb0854 (patch)
treed79b08da87a87b915cb9638172b6357e729d7c19 /ipc/ipc_channel.h
parent141c26dd8d4fea199546db1cb7b3c6644fff0e06 (diff)
downloadchromium_src-445623e613be115931b6b83dfa5f46d471fb0854.zip
chromium_src-445623e613be115931b6b83dfa5f46d471fb0854.tar.gz
chromium_src-445623e613be115931b6b83dfa5f46d471fb0854.tar.bz2
Revert 42656 - Add a Pepper audio basic functionality unit test.
Also changed TestSink to be derived from IPC::Channel and made MockRenderThread service AddFilter/RemoveFilter, so that it can be used by MessageFilters. Review URL: http://codereview.chromium.org/1207005 TBR=neb@chromium.org Review URL: http://codereview.chromium.org/1344003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42692 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_channel.h')
-rw-r--r--ipc/ipc_channel.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/ipc/ipc_channel.h b/ipc/ipc_channel.h
index 8468d7c..a7a9a34 100644
--- a/ipc/ipc_channel.h
+++ b/ipc/ipc_channel.h
@@ -96,13 +96,6 @@ class Channel : public Message::Sender {
int GetClientFileDescriptor() const;
#endif // defined(OS_POSIX)
- protected:
- // Used in Chrome by the TestSink to provide a dummy channel implementation
- // for testing. TestSink overrides the "interesting" functions in Channel so
- // no actual implementation is needed. This will cause un-overridden calls to
- // segfault. Do not use outside of test code!
- Channel() : channel_impl_(0) { }
-
private:
// PIMPL to which all channel calls are delegated.
class ChannelImpl;