| Index: mojo/system/channel.cc
|
| diff --git a/mojo/system/channel.cc b/mojo/system/channel.cc
|
| index fd5364eaba4a483e6d383d0288332dad05cb98e9..c0b68f1a5fc84d2fcb3b8aa892389ccd6e60b992 100644
|
| --- a/mojo/system/channel.cc
|
| +++ b/mojo/system/channel.cc
|
| @@ -36,8 +36,9 @@ Channel::EndpointInfo::EndpointInfo(scoped_refptr<MessagePipe> message_pipe,
|
| Channel::EndpointInfo::~EndpointInfo() {
|
| }
|
|
|
| -Channel::Channel()
|
| - : is_running_(false),
|
| +Channel::Channel(embedder::PlatformSupport* platform_support)
|
| + : platform_support_(platform_support),
|
| + is_running_(false),
|
| is_shutting_down_(false),
|
| next_local_id_(kBootstrapEndpointId) {
|
| }
|
|
|