Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Side by Side Diff: components/payments/core/test_payment_request_delegate.cc

Issue 2851893002: [Payments] Record CanMakePayment metrics on Desktop. (Closed)
Patch Set: Addressed Mathp's comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/core/test_payment_request_delegate.h" 5 #include "components/payments/core/test_payment_request_delegate.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 8
9 namespace payments { 9 namespace payments {
10 10
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 } 50 }
51 51
52 TestAddressNormalizer* TestPaymentRequestDelegate::GetTestAddressNormalizer() { 52 TestAddressNormalizer* TestPaymentRequestDelegate::GetTestAddressNormalizer() {
53 return &address_normalizer_; 53 return &address_normalizer_;
54 } 54 }
55 55
56 autofill::RegionDataLoader* TestPaymentRequestDelegate::GetRegionDataLoader() { 56 autofill::RegionDataLoader* TestPaymentRequestDelegate::GetRegionDataLoader() {
57 return nullptr; 57 return nullptr;
58 } 58 }
59 59
60 ukm::UkmService* TestPaymentRequestDelegate::GetUkmService() {
61 return nullptr;
62 }
63
60 } // namespace payments 64 } // namespace payments
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698