From d4651ffb26b0eb01701b01453dcd4479b7ca38eb Mon Sep 17 00:00:00 2001 From: "nsylvain@chromium.org" Date: Tue, 2 Dec 2008 16:51:58 +0000 Subject: 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 --- chrome/common/ipc_channel_posix.cc | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 chrome/common/ipc_channel_posix.cc (limited to 'chrome/common/ipc_channel_posix.cc') 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 -- cgit v1.1