| Index: mojo/system/raw_channel_win.cc
|
| diff --git a/mojo/system/raw_channel_win.cc b/mojo/system/raw_channel_win.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bb5eb105d3fd262e5da2957749b7ae982ec9772d
|
| --- /dev/null
|
| +++ b/mojo/system/raw_channel_win.cc
|
| @@ -0,0 +1,27 @@
|
| +// Copyright 2013 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 "mojo/system/raw_channel.h"
|
| +
|
| +#include <stddef.h>
|
| +
|
| +#include "base/logging.h"
|
| +
|
| +namespace mojo {
|
| +namespace system {
|
| +
|
| +// -----------------------------------------------------------------------------
|
| +
|
| +// Static factory method declared in raw_channel.h.
|
| +// static
|
| +RawChannel* RawChannel::Create(const PlatformChannelHandle& handle,
|
| + Delegate* delegate,
|
| + base::MessageLoop* message_loop) {
|
| + // TODO(vtl)
|
| + NOTIMPLEMENTED();
|
| + return NULL;
|
| +}
|
| +
|
| +} // namespace system
|
| +} // namespace mojo
|
|
|