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

Side by Side Diff: chrome/browser/ui/autofill/chrome_autofill_client.h

Issue 2883563002: Refactor UKM interface for mojo-ification (Closed)
Patch Set: Fix uma_session_stats.cc Created 3 years, 7 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ 6 #define CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 26 matching lines...) Expand all
37 public: 37 public:
38 ~ChromeAutofillClient() override; 38 ~ChromeAutofillClient() override;
39 39
40 // AutofillClient: 40 // AutofillClient:
41 PersonalDataManager* GetPersonalDataManager() override; 41 PersonalDataManager* GetPersonalDataManager() override;
42 scoped_refptr<AutofillWebDataService> GetDatabase() override; 42 scoped_refptr<AutofillWebDataService> GetDatabase() override;
43 PrefService* GetPrefs() override; 43 PrefService* GetPrefs() override;
44 syncer::SyncService* GetSyncService() override; 44 syncer::SyncService* GetSyncService() override;
45 IdentityProvider* GetIdentityProvider() override; 45 IdentityProvider* GetIdentityProvider() override;
46 rappor::RapporServiceImpl* GetRapporServiceImpl() override; 46 rappor::RapporServiceImpl* GetRapporServiceImpl() override;
47 ukm::UkmService* GetUkmService() override; 47 ukm::UkmRecorder* GetUkmRecorder() override;
48 SaveCardBubbleController* GetSaveCardBubbleController() override; 48 SaveCardBubbleController* GetSaveCardBubbleController() override;
49 void ShowAutofillSettings() override; 49 void ShowAutofillSettings() override;
50 void ShowUnmaskPrompt(const CreditCard& card, 50 void ShowUnmaskPrompt(const CreditCard& card,
51 UnmaskCardReason reason, 51 UnmaskCardReason reason,
52 base::WeakPtr<CardUnmaskDelegate> delegate) override; 52 base::WeakPtr<CardUnmaskDelegate> delegate) override;
53 void OnUnmaskVerificationResult(PaymentsRpcResult result) override; 53 void OnUnmaskVerificationResult(PaymentsRpcResult result) override;
54 void ConfirmSaveCreditCardLocally(const CreditCard& card, 54 void ConfirmSaveCreditCardLocally(const CreditCard& card,
55 const base::Closure& callback) override; 55 const base::Closure& callback) override;
56 void ConfirmSaveCreditCardToCloud( 56 void ConfirmSaveCreditCardToCloud(
57 const CreditCard& card, 57 const CreditCard& card,
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 101
102 // The identity provider, used for Payments integration. 102 // The identity provider, used for Payments integration.
103 std::unique_ptr<IdentityProvider> identity_provider_; 103 std::unique_ptr<IdentityProvider> identity_provider_;
104 104
105 DISALLOW_COPY_AND_ASSIGN(ChromeAutofillClient); 105 DISALLOW_COPY_AND_ASSIGN(ChromeAutofillClient);
106 }; 106 };
107 107
108 } // namespace autofill 108 } // namespace autofill
109 109
110 #endif // CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_ 110 #endif // CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698