Make renderer-initiated navigations be relative to the last-committed entry.
[chromium-blink-merge.git] / ipc / attachment_broker_win.cc
blobcaf80b8f488d03981bc86593542c3d74d6159fca
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.
5 #include "ipc/attachment_broker_win.h"
7 namespace IPC {
9 AttachmentBrokerWin::AttachmentBrokerWin() {
12 AttachmentBrokerWin::~AttachmentBrokerWin() {
15 void AttachmentBrokerWin::OnReceiveDuplicatedHandle(
16 HANDLE,
17 BrokerableAttachment::AttachmentId id) {
18 // TODO(erikchen): Implement me. http://crbug.com/493414
21 void AttachmentBrokerWin::SendAttachmentToProcess(
22 BrokerableAttachment* attachment,
23 base::ProcessId destination_process) {
24 // TODO(erikchen): Implement me. http://crbug.com/493414
27 bool AttachmentBrokerWin::GetAttachmentWithId(
28 BrokerableAttachment::AttachmentId id,
29 BrokerableAttachment* attachment) {
30 // TODO(erikchen): Implement me. http://crbug.com/493414
31 return false;
34 } // namespace IPC