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

Side by Side Diff: ios/chrome/browser/ui/autofill/autofill_client_ios.h

Issue 2740633002: [Autofill] Add upstreaming UKM (Closed)
Patch Set: Fixed comments Created 3 years, 9 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
« no previous file with comments | « components/ukm/ukm_service.h ('k') | ios/chrome/browser/ui/autofill/autofill_client_ios.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « components/ukm/ukm_service.h ('k') | ios/chrome/browser/ui/autofill/autofill_client_ios.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698