summaryrefslogtreecommitdiffstats
path: root/chrome/common/ipc_channel_posix.cc
diff options
context:
space:
mode:
authornsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-02 03:51:25 +0000
committernsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-02 03:51:25 +0000
commit78c3e681adfdb9c33a61150f471ba1749e5e7182 (patch)
tree0079888224cebc5e39a62f50c096fa84cc342bac /chrome/common/ipc_channel_posix.cc
parent2f5e746560e7e557d844863bcc40bd09476f5189 (diff)
downloadchromium_src-78c3e681adfdb9c33a61150f471ba1749e5e7182.zip
chromium_src-78c3e681adfdb9c33a61150f471ba1749e5e7182.tar.gz
chromium_src-78c3e681adfdb9c33a61150f471ba1749e5e7182.tar.bz2
We have a bunch of new ui_tests failures. I want
to check if this change (6181) was the cause. I'm reverting. TBR:jeremy Review URL: http://codereview.chromium.org/12856 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6199 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/ipc_channel_posix.cc')
-rw-r--r--chrome/common/ipc_channel_posix.cc32
1 files changed, 0 insertions, 32 deletions
diff --git a/chrome/common/ipc_channel_posix.cc b/chrome/common/ipc_channel_posix.cc
deleted file mode 100644
index 4cfcfe6..0000000
--- a/chrome/common/ipc_channel_posix.cc
+++ /dev/null
@@ -1,32 +0,0 @@
-// 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