| 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 ukm::UkmRecorder* GetUkmRecorder() override; |
| 63 SaveCardBubbleController* GetSaveCardBubbleController() override; | 63 SaveCardBubbleController* GetSaveCardBubbleController() override; |
| 64 void ShowAutofillSettings() override; | 64 void ShowAutofillSettings() override; |
| 65 void ShowUnmaskPrompt(const CreditCard& card, | 65 void ShowUnmaskPrompt(const CreditCard& card, |
| 66 UnmaskCardReason reason, | 66 UnmaskCardReason reason, |
| 67 base::WeakPtr<CardUnmaskDelegate> delegate) override; | 67 base::WeakPtr<CardUnmaskDelegate> delegate) override; |
| 68 void OnUnmaskVerificationResult(PaymentsRpcResult result) override; | 68 void OnUnmaskVerificationResult(PaymentsRpcResult result) override; |
| 69 void ConfirmSaveCreditCardLocally(const CreditCard& card, | 69 void ConfirmSaveCreditCardLocally(const CreditCard& card, |
| 70 const base::Closure& callback) override; | 70 const base::Closure& callback) override; |
| 71 void ConfirmSaveCreditCardToCloud( | 71 void ConfirmSaveCreditCardToCloud( |
| 72 const CreditCard& card, | 72 const CreditCard& card, |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 password_manager::PasswordGenerationManager* password_generation_manager_; | 108 password_manager::PasswordGenerationManager* password_generation_manager_; |
| 109 std::unique_ptr<IdentityProvider> identity_provider_; | 109 std::unique_ptr<IdentityProvider> identity_provider_; |
| 110 CardUnmaskPromptControllerImpl unmask_controller_; | 110 CardUnmaskPromptControllerImpl unmask_controller_; |
| 111 | 111 |
| 112 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS); | 112 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS); |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 } // namespace autofill | 115 } // namespace autofill |
| 116 | 116 |
| 117 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ | 117 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ |
| OLD | NEW |