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

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

Issue 873583007: Add OAuth2 token to RealPanRequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ) Created 5 years, 11 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 | « no previous file | android_webview/native/aw_autofill_client.cc » ('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 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 <vector> 9 #include <vector>
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 virtual ~AwAutofillClient(); 53 virtual ~AwAutofillClient();
54 54
55 void SetSaveFormData(bool enabled); 55 void SetSaveFormData(bool enabled);
56 bool GetSaveFormData(); 56 bool GetSaveFormData();
57 57
58 // AutofillClient: 58 // AutofillClient:
59 virtual autofill::PersonalDataManager* GetPersonalDataManager() override; 59 virtual autofill::PersonalDataManager* GetPersonalDataManager() override;
60 virtual scoped_refptr<autofill::AutofillWebDataService> GetDatabase() 60 virtual scoped_refptr<autofill::AutofillWebDataService> GetDatabase()
61 override; 61 override;
62 virtual PrefService* GetPrefs() override; 62 virtual PrefService* GetPrefs() override;
63 IdentityProvider* GetIdentityProvider() override;
63 virtual void HideRequestAutocompleteDialog() override; 64 virtual void HideRequestAutocompleteDialog() override;
64 virtual void ShowAutofillSettings() override; 65 virtual void ShowAutofillSettings() override;
65 virtual void ShowUnmaskPrompt( 66 virtual void ShowUnmaskPrompt(
66 const autofill::CreditCard& card, 67 const autofill::CreditCard& card,
67 base::WeakPtr<autofill::CardUnmaskDelegate> delegate) override; 68 base::WeakPtr<autofill::CardUnmaskDelegate> delegate) override;
68 virtual void OnUnmaskVerificationResult(bool success) override; 69 virtual void OnUnmaskVerificationResult(bool success) override;
69 virtual void ConfirmSaveCreditCard( 70 virtual void ConfirmSaveCreditCard(
70 const base::Closure& save_card_callback) override; 71 const base::Closure& save_card_callback) override;
71 virtual bool HasCreditCardScanFeature() override; 72 virtual bool HasCreditCardScanFeature() override;
72 virtual void ScanCreditCard(const CreditCardScanCallback& callback) override; 73 virtual void ScanCreditCard(const CreditCardScanCallback& callback) override;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 base::WeakPtr<autofill::AutofillPopupDelegate> delegate_; 116 base::WeakPtr<autofill::AutofillPopupDelegate> delegate_;
116 117
117 DISALLOW_COPY_AND_ASSIGN(AwAutofillClient); 118 DISALLOW_COPY_AND_ASSIGN(AwAutofillClient);
118 }; 119 };
119 120
120 bool RegisterAwAutofillClient(JNIEnv* env); 121 bool RegisterAwAutofillClient(JNIEnv* env);
121 122
122 } // namespace android_webview 123 } // namespace android_webview
123 124
124 #endif // ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_ 125 #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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698