OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 "ipc/attachment_broker_win.h" |
| 6 |
| 7 namespace IPC { |
| 8 |
| 9 AttachmentBrokerWin::AttachmentBrokerWin() { |
| 10 } |
| 11 |
| 12 AttachmentBrokerWin::~AttachmentBrokerWin() { |
| 13 } |
| 14 |
| 15 void AttachmentBrokerWin::OnReceiveDuplicatedHandle( |
| 16 HANDLE, |
| 17 BrokerableAttachment::AttachmentId id) { |
| 18 // TODO(erikchen): Implement me. http://crbug.com/493414 |
| 19 } |
| 20 |
| 21 void AttachmentBrokerWin::SendAttachmentToProcess( |
| 22 BrokerableAttachment* attachment, |
| 23 base::ProcessId destination_process) { |
| 24 // TODO(erikchen): Implement me. http://crbug.com/493414 |
| 25 } |
| 26 |
| 27 bool AttachmentBrokerWin::GetAttachmentWithId( |
| 28 BrokerableAttachment::AttachmentId id, |
| 29 BrokerableAttachment* attachment) { |
| 30 // TODO(erikchen): Implement me. http://crbug.com/493414 |
| 31 return false; |
| 32 } |
| 33 |
| 34 } // namespace IPC |
OLD | NEW |