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

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

Issue 2789843004: [Payments] Upload card UI now has a CVC prompt (Closed)
Patch Set: Attempt to fix memory leak Created 3 years, 8 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 #include "android_webview/native/aw_autofill_client.h" 5 #include "android_webview/native/aw_autofill_client.h"
6 6
7 #include "android_webview/browser/aw_browser_context.h" 7 #include "android_webview/browser/aw_browser_context.h"
8 #include "android_webview/browser/aw_content_browser_client.h" 8 #include "android_webview/browser/aw_content_browser_client.h"
9 #include "android_webview/browser/aw_form_database_service.h" 9 #include "android_webview/browser/aw_form_database_service.h"
10 #include "android_webview/native/aw_contents.h" 10 #include "android_webview/native/aw_contents.h"
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 248
249 void AwAutofillClient::ConfirmSaveCreditCardLocally( 249 void AwAutofillClient::ConfirmSaveCreditCardLocally(
250 const autofill::CreditCard& card, 250 const autofill::CreditCard& card,
251 const base::Closure& callback) { 251 const base::Closure& callback) {
252 NOTIMPLEMENTED(); 252 NOTIMPLEMENTED();
253 } 253 }
254 254
255 void AwAutofillClient::ConfirmSaveCreditCardToCloud( 255 void AwAutofillClient::ConfirmSaveCreditCardToCloud(
256 const autofill::CreditCard& card, 256 const autofill::CreditCard& card,
257 std::unique_ptr<base::DictionaryValue> legal_message, 257 std::unique_ptr<base::DictionaryValue> legal_message,
258 bool should_cvc_be_requested,
258 const base::Closure& callback) { 259 const base::Closure& callback) {
259 NOTIMPLEMENTED(); 260 NOTIMPLEMENTED();
260 } 261 }
261 262
262 void AwAutofillClient::ConfirmCreditCardFillAssist( 263 void AwAutofillClient::ConfirmCreditCardFillAssist(
263 const autofill::CreditCard& card, 264 const autofill::CreditCard& card,
264 const base::Closure& callback) { 265 const base::Closure& callback) {
265 NOTIMPLEMENTED(); 266 NOTIMPLEMENTED();
266 } 267 }
267 268
268 void AwAutofillClient::LoadRiskData( 269 void AwAutofillClient::LoadRiskData(
269 const base::Callback<void(const std::string&)>& callback) { 270 const base::Callback<void(const std::string&)>& callback) {
270 NOTIMPLEMENTED(); 271 NOTIMPLEMENTED();
271 } 272 }
272 273
273 bool AwAutofillClient::HasCreditCardScanFeature() { 274 bool AwAutofillClient::HasCreditCardScanFeature() {
274 return false; 275 return false;
275 } 276 }
276 277
277 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) { 278 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) {
278 NOTIMPLEMENTED(); 279 NOTIMPLEMENTED();
279 } 280 }
280 281
281 bool RegisterAwAutofillClient(JNIEnv* env) { 282 bool RegisterAwAutofillClient(JNIEnv* env) {
282 return RegisterNativesImpl(env); 283 return RegisterNativesImpl(env);
283 } 284 }
284 285
285 } // namespace android_webview 286 } // namespace android_webview
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698