blob: bb5eb105d3fd262e5da2957749b7ae982ec9772d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
|