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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 id<AutofillClientIOSBridge> bridge, | 46 id<AutofillClientIOSBridge> bridge, |
47 password_manager::PasswordGenerationManager* password_generation_manager, | 47 password_manager::PasswordGenerationManager* password_generation_manager, |
48 std::unique_ptr<IdentityProvider> identity_provider); | 48 std::unique_ptr<IdentityProvider> identity_provider); |
49 ~AutofillClientIOS() override; | 49 ~AutofillClientIOS() override; |
50 | 50 |
51 // AutofillClient implementation. | 51 // AutofillClient implementation. |
52 PersonalDataManager* GetPersonalDataManager() override; | 52 PersonalDataManager* GetPersonalDataManager() override; |
53 PrefService* GetPrefs() override; | 53 PrefService* GetPrefs() override; |
54 syncer::SyncService* GetSyncService() override; | 54 syncer::SyncService* GetSyncService() override; |
55 IdentityProvider* GetIdentityProvider() override; | 55 IdentityProvider* GetIdentityProvider() override; |
56 rappor::RapporService* GetRapporService() override; | 56 rappor::RapporServiceImpl* GetRapporServiceImpl() override; |
57 void ShowAutofillSettings() override; | 57 void ShowAutofillSettings() override; |
58 void ShowUnmaskPrompt(const CreditCard& card, | 58 void ShowUnmaskPrompt(const CreditCard& card, |
59 UnmaskCardReason reason, | 59 UnmaskCardReason reason, |
60 base::WeakPtr<CardUnmaskDelegate> delegate) override; | 60 base::WeakPtr<CardUnmaskDelegate> delegate) override; |
61 void OnUnmaskVerificationResult(PaymentsRpcResult result) override; | 61 void OnUnmaskVerificationResult(PaymentsRpcResult result) override; |
62 void ConfirmSaveCreditCardLocally(const CreditCard& card, | 62 void ConfirmSaveCreditCardLocally(const CreditCard& card, |
63 const base::Closure& callback) override; | 63 const base::Closure& callback) override; |
64 void ConfirmSaveCreditCardToCloud( | 64 void ConfirmSaveCreditCardToCloud( |
65 const CreditCard& card, | 65 const CreditCard& card, |
66 std::unique_ptr<base::DictionaryValue> legal_message, | 66 std::unique_ptr<base::DictionaryValue> legal_message, |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 password_manager::PasswordGenerationManager* password_generation_manager_; | 100 password_manager::PasswordGenerationManager* password_generation_manager_; |
101 std::unique_ptr<IdentityProvider> identity_provider_; | 101 std::unique_ptr<IdentityProvider> identity_provider_; |
102 CardUnmaskPromptControllerImpl unmask_controller_; | 102 CardUnmaskPromptControllerImpl unmask_controller_; |
103 | 103 |
104 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS); | 104 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS); |
105 }; | 105 }; |
106 | 106 |
107 } // namespace autofill | 107 } // namespace autofill |
108 | 108 |
109 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ | 109 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ |
OLD | NEW |