diff options
author | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-02 16:51:58 +0000 |
---|---|---|
committer | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-02 16:51:58 +0000 |
commit | d4651ffb26b0eb01701b01453dcd4479b7ca38eb (patch) | |
tree | 3c646cf469cd06bb60c93e98afc0014a8f39c042 /chrome/common/ipc_channel_posix.cc | |
parent | 0d83c73b55bd0b5a527f0bcdd26f0d3815d8f938 (diff) | |
download | chromium_src-d4651ffb26b0eb01701b01453dcd4479b7ca38eb.zip chromium_src-d4651ffb26b0eb01701b01453dcd4479b7ca38eb.tar.gz chromium_src-d4651ffb26b0eb01701b01453dcd4479b7ca38eb.tar.bz2 |
Try to reland the ipc code to see if the tests
are going to break again.
TBR:jeremy
Review URL: http://codereview.chromium.org/13053
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6222 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/ipc_channel_posix.cc')
-rw-r--r-- | chrome/common/ipc_channel_posix.cc | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/chrome/common/ipc_channel_posix.cc b/chrome/common/ipc_channel_posix.cc new file mode 100644 index 0000000..4cfcfe6 --- /dev/null +++ b/chrome/common/ipc_channel_posix.cc @@ -0,0 +1,32 @@ +// Copyright (c) 2008 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. + +#include "chrome/common/ipc_channel.h" + + +namespace IPC { + +// TODO(playmobil): implement. + +//------------------------------------------------------------------------------ + +Channel::Channel(const std::wstring& channel_id, Mode mode, Listener* listener) + : factory_(this) { + NOTREACHED(); +} + +void Channel::Close() { + NOTREACHED(); +} + +bool Channel::Send(Message* message) { + NOTREACHED(); + return false; +} + +bool Channel::Connect() { + NOTREACHED(); + return false; +} +} // namespace IPC |