| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "components/payments/payment_request_web_contents_manager.h" | 5 #include "components/payments/content/payment_request_web_contents_manager.h" |
| 6 | 6 |
| 7 #include <memory> | |
| 8 #include <utility> | 7 #include <utility> |
| 9 | 8 |
| 10 #include "base/logging.h" | 9 #include "base/logging.h" |
| 11 #include "components/payments/payment_request_delegate.h" | 10 #include "base/memory/ptr_util.h" |
| 11 #include "components/payments/content/payment_request.h" |
| 12 #include "components/payments/content/payment_request_delegate.h" |
| 13 #include "content/public/browser/web_contents.h" |
| 12 | 14 |
| 13 DEFINE_WEB_CONTENTS_USER_DATA_KEY(payments::PaymentRequestWebContentsManager); | 15 DEFINE_WEB_CONTENTS_USER_DATA_KEY(payments::PaymentRequestWebContentsManager); |
| 14 | 16 |
| 15 namespace payments { | 17 namespace payments { |
| 16 | 18 |
| 17 PaymentRequestWebContentsManager::~PaymentRequestWebContentsManager() {} | 19 PaymentRequestWebContentsManager::~PaymentRequestWebContentsManager() {} |
| 18 | 20 |
| 19 PaymentRequestWebContentsManager* | 21 PaymentRequestWebContentsManager* |
| 20 PaymentRequestWebContentsManager::GetOrCreateForWebContents( | 22 PaymentRequestWebContentsManager::GetOrCreateForWebContents( |
| 21 content::WebContents* web_contents) { | 23 content::WebContents* web_contents) { |
| 22 DCHECK(web_contents); | 24 DCHECK(web_contents); |
| 23 // CreateForWebContents does nothing if the manager instance already exists. | 25 // CreateForWebContents does nothing if the manager instance already exists. |
| 24 PaymentRequestWebContentsManager::CreateForWebContents(web_contents); | 26 PaymentRequestWebContentsManager::CreateForWebContents(web_contents); |
| 25 return PaymentRequestWebContentsManager::FromWebContents(web_contents); | 27 return PaymentRequestWebContentsManager::FromWebContents(web_contents); |
| 26 } | 28 } |
| 27 | 29 |
| 28 void PaymentRequestWebContentsManager::CreatePaymentRequest( | 30 void PaymentRequestWebContentsManager::CreatePaymentRequest( |
| 29 content::WebContents* web_contents, | 31 content::WebContents* web_contents, |
| 30 std::unique_ptr<PaymentRequestDelegate> delegate, | 32 std::unique_ptr<PaymentRequestDelegate> delegate, |
| 31 mojo::InterfaceRequest<payments::mojom::PaymentRequest> request) { | 33 mojo::InterfaceRequest<payments::mojom::PaymentRequest> request) { |
| 32 std::unique_ptr<PaymentRequest> new_request(new PaymentRequest( | 34 auto new_request = base::MakeUnique<PaymentRequest>( |
| 33 web_contents, std::move(delegate), this, std::move(request))); | 35 web_contents, std::move(delegate), this, std::move(request)); |
| 34 PaymentRequest* request_ptr = new_request.get(); | 36 PaymentRequest* request_ptr = new_request.get(); |
| 35 payment_requests_.insert(std::make_pair(request_ptr, std::move(new_request))); | 37 payment_requests_.insert(std::make_pair(request_ptr, std::move(new_request))); |
| 36 } | 38 } |
| 37 | 39 |
| 38 void PaymentRequestWebContentsManager::DestroyRequest(PaymentRequest* request) { | 40 void PaymentRequestWebContentsManager::DestroyRequest(PaymentRequest* request) { |
| 39 payment_requests_.erase(request); | 41 payment_requests_.erase(request); |
| 40 } | 42 } |
| 41 | 43 |
| 42 PaymentRequestWebContentsManager::PaymentRequestWebContentsManager( | 44 PaymentRequestWebContentsManager::PaymentRequestWebContentsManager( |
| 43 content::WebContents* web_contents) {} | 45 content::WebContents* web_contents) {} |
| 44 | 46 |
| 45 } // namespace payments | 47 } // namespace payments |
| OLD | NEW |