| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "content/browser/loader/downloaded_temp_file_impl.h" | 5 #include "content/browser/loader/downloaded_temp_file_impl.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "content/browser/loader/resource_dispatcher_host_impl.h" | 8 #include "content/browser/loader/resource_dispatcher_host_impl.h" |
| 9 #include "mojo/public/cpp/bindings/associated_group.h" |
| 10 #include "mojo/public/cpp/bindings/strong_associated_binding.h" |
| 9 #include "mojo/public/cpp/bindings/strong_binding.h" | 11 #include "mojo/public/cpp/bindings/strong_binding.h" |
| 10 | 12 |
| 11 namespace content { | 13 namespace content { |
| 12 | 14 |
| 13 // static | 15 // static |
| 14 mojo::InterfacePtr<mojom::DownloadedTempFile> DownloadedTempFileImpl::Create( | 16 mojom::DownloadedTempFileAssociatedPtrInfo DownloadedTempFileImpl::Create( |
| 17 mojo::AssociatedGroup* associated_group, |
| 18 int child_id, |
| 19 int request_id) { |
| 20 mojo::AssociatedInterfacePtrInfo<mojom::DownloadedTempFile> ptr_info; |
| 21 mojo::AssociatedInterfaceRequest<mojom::DownloadedTempFile> request; |
| 22 associated_group->CreateAssociatedInterface( |
| 23 mojo::AssociatedGroup::WILL_PASS_PTR, &ptr_info, &request); |
| 24 mojo::MakeStrongAssociatedBinding( |
| 25 base::MakeUnique<DownloadedTempFileImpl>(child_id, request_id), |
| 26 std::move(request)); |
| 27 return ptr_info; |
| 28 } |
| 29 |
| 30 // static |
| 31 mojom::DownloadedTempFilePtr DownloadedTempFileImpl::CreateForTesting( |
| 15 int child_id, | 32 int child_id, |
| 16 int request_id) { | 33 int request_id) { |
| 17 mojo::InterfacePtr<mojom::DownloadedTempFile> ptr; | 34 mojo::InterfacePtr<mojom::DownloadedTempFile> ptr; |
| 18 auto binding = mojo::MakeStrongBinding( | 35 mojo::MakeStrongBinding( |
| 19 base::MakeUnique<DownloadedTempFileImpl>(child_id, request_id), | 36 base::MakeUnique<DownloadedTempFileImpl>(child_id, request_id), |
| 20 mojo::MakeRequest(&ptr)); | 37 mojo::MakeRequest(&ptr)); |
| 21 return ptr; | 38 return ptr; |
| 22 } | 39 } |
| 23 | 40 |
| 24 DownloadedTempFileImpl::~DownloadedTempFileImpl() { | 41 DownloadedTempFileImpl::~DownloadedTempFileImpl() { |
| 25 ResourceDispatcherHostImpl::Get()->UnregisterDownloadedTempFile(child_id_, | 42 ResourceDispatcherHostImpl::Get()->UnregisterDownloadedTempFile(child_id_, |
| 26 request_id_); | 43 request_id_); |
| 27 } | 44 } |
| 28 DownloadedTempFileImpl::DownloadedTempFileImpl(int child_id, int request_id) | 45 DownloadedTempFileImpl::DownloadedTempFileImpl(int child_id, int request_id) |
| 29 : child_id_(child_id), request_id_(request_id) {} | 46 : child_id_(child_id), request_id_(request_id) {} |
| 30 | 47 |
| 31 } // namespace content | 48 } // namespace content |
| OLD | NEW |