| Index: ipc/ipc_channel.h
|
| diff --git a/ipc/ipc_channel.h b/ipc/ipc_channel.h
|
| index a7a9a347b3c664133d8bffd3586a07592ae91a1d..d1dbd03ca992df36841af56f9f4885937096dc06 100644
|
| --- a/ipc/ipc_channel.h
|
| +++ b/ipc/ipc_channel.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2010 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.
|
|
|
| @@ -96,6 +96,13 @@ 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;
|
|
|