OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "mojo/system/raw_channel.h" | 5 #include "mojo/system/raw_channel.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 | 10 |
11 namespace mojo { | 11 namespace mojo { |
12 namespace system { | 12 namespace system { |
13 | 13 |
14 // ----------------------------------------------------------------------------- | 14 // ----------------------------------------------------------------------------- |
15 | 15 |
16 // Static factory method declared in raw_channel.h. | 16 // Static factory method declared in raw_channel.h. |
17 // static | 17 // static |
18 RawChannel* RawChannel::Create(const PlatformChannelHandle& handle, | 18 RawChannel* RawChannel::Create(ScopedPlatformHandle handle, |
19 Delegate* delegate, | 19 Delegate* delegate, |
20 base::MessageLoop* message_loop) { | 20 base::MessageLoop* message_loop) { |
21 // TODO(vtl) | 21 // TODO(vtl) |
22 NOTIMPLEMENTED(); | 22 NOTIMPLEMENTED(); |
23 return NULL; | 23 return NULL; |
24 } | 24 } |
25 | 25 |
26 } // namespace system | 26 } // namespace system |
27 } // namespace mojo | 27 } // namespace mojo |
OLD | NEW |