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

Side by Side Diff: android_webview/native/aw_autofill_client.h

Issue 2510803003: Pass RapporService to content/browser/ (Closed)
Patch Set: Applying comments Created 4 years 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 ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_ 5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_
6 #define ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_ 6 #define ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 void SetSaveFormData(bool enabled); 62 void SetSaveFormData(bool enabled);
63 bool GetSaveFormData(); 63 bool GetSaveFormData();
64 64
65 // AutofillClient: 65 // AutofillClient:
66 autofill::PersonalDataManager* GetPersonalDataManager() override; 66 autofill::PersonalDataManager* GetPersonalDataManager() override;
67 scoped_refptr<autofill::AutofillWebDataService> GetDatabase() override; 67 scoped_refptr<autofill::AutofillWebDataService> GetDatabase() override;
68 PrefService* GetPrefs() override; 68 PrefService* GetPrefs() override;
69 syncer::SyncService* GetSyncService() override; 69 syncer::SyncService* GetSyncService() override;
70 IdentityProvider* GetIdentityProvider() override; 70 IdentityProvider* GetIdentityProvider() override;
71 rappor::RapporService* GetRapporService() override; 71 rappor::RapporServiceImpl* GetRapporServiceImpl() override;
72 void ShowAutofillSettings() override; 72 void ShowAutofillSettings() override;
73 void ShowUnmaskPrompt( 73 void ShowUnmaskPrompt(
74 const autofill::CreditCard& card, 74 const autofill::CreditCard& card,
75 UnmaskCardReason reason, 75 UnmaskCardReason reason,
76 base::WeakPtr<autofill::CardUnmaskDelegate> delegate) override; 76 base::WeakPtr<autofill::CardUnmaskDelegate> delegate) override;
77 void OnUnmaskVerificationResult(PaymentsRpcResult result) override; 77 void OnUnmaskVerificationResult(PaymentsRpcResult result) override;
78 void ConfirmSaveCreditCardLocally(const autofill::CreditCard& card, 78 void ConfirmSaveCreditCardLocally(const autofill::CreditCard& card,
79 const base::Closure& callback) override; 79 const base::Closure& callback) override;
80 void ConfirmSaveCreditCardToCloud( 80 void ConfirmSaveCreditCardToCloud(
81 const autofill::CreditCard& card, 81 const autofill::CreditCard& card,
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 base::WeakPtr<autofill::AutofillPopupDelegate> delegate_; 134 base::WeakPtr<autofill::AutofillPopupDelegate> delegate_;
135 135
136 DISALLOW_COPY_AND_ASSIGN(AwAutofillClient); 136 DISALLOW_COPY_AND_ASSIGN(AwAutofillClient);
137 }; 137 };
138 138
139 bool RegisterAwAutofillClient(JNIEnv* env); 139 bool RegisterAwAutofillClient(JNIEnv* env);
140 140
141 } // namespace android_webview 141 } // namespace android_webview
142 142
143 #endif // ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_ 143 #endif // ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | android_webview/native/aw_autofill_client.cc » ('j') | components/rappor/public/rappor_public_service.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698