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 #ifndef IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ |
6 #define IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ | 6 #define IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 password_manager::PasswordGenerationManager* password_generation_manager, | 52 password_manager::PasswordGenerationManager* password_generation_manager, |
53 std::unique_ptr<IdentityProvider> identity_provider); | 53 std::unique_ptr<IdentityProvider> identity_provider); |
54 ~AutofillClientIOS() override; | 54 ~AutofillClientIOS() override; |
55 | 55 |
56 // AutofillClient implementation. | 56 // AutofillClient implementation. |
57 PersonalDataManager* GetPersonalDataManager() override; | 57 PersonalDataManager* GetPersonalDataManager() override; |
58 PrefService* GetPrefs() override; | 58 PrefService* GetPrefs() override; |
59 syncer::SyncService* GetSyncService() override; | 59 syncer::SyncService* GetSyncService() override; |
60 IdentityProvider* GetIdentityProvider() override; | 60 IdentityProvider* GetIdentityProvider() override; |
61 rappor::RapporServiceImpl* GetRapporServiceImpl() override; | 61 rappor::RapporServiceImpl* GetRapporServiceImpl() override; |
| 62 ukm::UkmService* GetUkmService() override; |
62 void ShowAutofillSettings() override; | 63 void ShowAutofillSettings() override; |
63 void ShowUnmaskPrompt(const CreditCard& card, | 64 void ShowUnmaskPrompt(const CreditCard& card, |
64 UnmaskCardReason reason, | 65 UnmaskCardReason reason, |
65 base::WeakPtr<CardUnmaskDelegate> delegate) override; | 66 base::WeakPtr<CardUnmaskDelegate> delegate) override; |
66 void OnUnmaskVerificationResult(PaymentsRpcResult result) override; | 67 void OnUnmaskVerificationResult(PaymentsRpcResult result) override; |
67 void ConfirmSaveCreditCardLocally(const CreditCard& card, | 68 void ConfirmSaveCreditCardLocally(const CreditCard& card, |
68 const base::Closure& callback) override; | 69 const base::Closure& callback) override; |
69 void ConfirmSaveCreditCardToCloud( | 70 void ConfirmSaveCreditCardToCloud( |
70 const CreditCard& card, | 71 const CreditCard& card, |
71 std::unique_ptr<base::DictionaryValue> legal_message, | 72 std::unique_ptr<base::DictionaryValue> legal_message, |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 password_manager::PasswordGenerationManager* password_generation_manager_; | 107 password_manager::PasswordGenerationManager* password_generation_manager_; |
107 std::unique_ptr<IdentityProvider> identity_provider_; | 108 std::unique_ptr<IdentityProvider> identity_provider_; |
108 CardUnmaskPromptControllerImpl unmask_controller_; | 109 CardUnmaskPromptControllerImpl unmask_controller_; |
109 | 110 |
110 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS); | 111 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS); |
111 }; | 112 }; |
112 | 113 |
113 } // namespace autofill | 114 } // namespace autofill |
114 | 115 |
115 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ | 116 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ |
OLD | NEW |