OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #import "ios/chrome/browser/ui/autofill/autofill_client_ios.h" | 5 #import "ios/chrome/browser/ui/autofill/autofill_client_ios.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 | 58 |
59 // TODO(crbug.com/535784): Implement this when adding credit card upload. | 59 // TODO(crbug.com/535784): Implement this when adding credit card upload. |
60 syncer::SyncService* AutofillClientIOS::GetSyncService() { | 60 syncer::SyncService* AutofillClientIOS::GetSyncService() { |
61 return nullptr; | 61 return nullptr; |
62 } | 62 } |
63 | 63 |
64 IdentityProvider* AutofillClientIOS::GetIdentityProvider() { | 64 IdentityProvider* AutofillClientIOS::GetIdentityProvider() { |
65 return identity_provider_.get(); | 65 return identity_provider_.get(); |
66 } | 66 } |
67 | 67 |
68 rappor::RapporService* AutofillClientIOS::GetRapporService() { | 68 rappor::RapporServiceImpl* AutofillClientIOS::GetRapporServiceImpl() { |
69 return GetApplicationContext()->GetRapporService(); | 69 return GetApplicationContext()->GetRapporServiceImpl(); |
70 } | 70 } |
71 | 71 |
72 void AutofillClientIOS::ShowAutofillSettings() { | 72 void AutofillClientIOS::ShowAutofillSettings() { |
73 NOTREACHED(); | 73 NOTREACHED(); |
74 } | 74 } |
75 | 75 |
76 void AutofillClientIOS::ShowUnmaskPrompt( | 76 void AutofillClientIOS::ShowUnmaskPrompt( |
77 const CreditCard& card, | 77 const CreditCard& card, |
78 UnmaskCardReason reason, | 78 UnmaskCardReason reason, |
79 base::WeakPtr<CardUnmaskDelegate> delegate) { | 79 base::WeakPtr<CardUnmaskDelegate> delegate) { |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 | 195 |
196 void AutofillClientIOS::StartSigninFlow() { | 196 void AutofillClientIOS::StartSigninFlow() { |
197 NOTIMPLEMENTED(); | 197 NOTIMPLEMENTED(); |
198 } | 198 } |
199 | 199 |
200 void AutofillClientIOS::ShowHttpNotSecureExplanation() { | 200 void AutofillClientIOS::ShowHttpNotSecureExplanation() { |
201 NOTIMPLEMENTED(); | 201 NOTIMPLEMENTED(); |
202 } | 202 } |
203 | 203 |
204 } // namespace autofill | 204 } // namespace autofill |
OLD | NEW |