OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "mojo/edk/system/channel_info.h" |
| 6 |
| 7 namespace mojo { |
| 8 namespace system { |
| 9 |
| 10 ChannelInfo::ChannelInfo() { |
| 11 } |
| 12 |
| 13 ChannelInfo::ChannelInfo( |
| 14 scoped_refptr<Channel> channel, |
| 15 scoped_refptr<base::TaskRunner> channel_thread_task_runner) |
| 16 : channel(channel), channel_thread_task_runner(channel_thread_task_runner) { |
| 17 } |
| 18 |
| 19 ChannelInfo::~ChannelInfo() { |
| 20 } |
| 21 |
| 22 } // namespace system |
| 23 } // namespace mojo |
OLD | NEW |