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

Unified Diff: components/autofill/core/browser/payments/payments_request.h

Issue 1859453002: components/autofill: scoped_ptr -> unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on password_manager changes Created 4 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 side-by-side diff with in-line comments
Download patch
Index: components/autofill/core/browser/payments/payments_request.h
diff --git a/components/autofill/core/browser/payments/payments_request.h b/components/autofill/core/browser/payments/payments_request.h
index be59661dea9a1b54ddd85d2fe5676ee13b01012a..8cdabfdc6a6918121f8e026b2658211a8f7d6d87 100644
--- a/components/autofill/core/browser/payments/payments_request.h
+++ b/components/autofill/core/browser/payments/payments_request.h
@@ -28,7 +28,8 @@ class PaymentsRequest {
virtual std::string GetRequestContent() = 0;
// Parses the required elements of the HTTP response.
- virtual void ParseResponse(scoped_ptr<base::DictionaryValue> response) = 0;
+ virtual void ParseResponse(
+ std::unique_ptr<base::DictionaryValue> response) = 0;
// Returns true if all of the required elements were successfully retrieved by
// a call to ParseResponse.

Powered by Google App Engine
This is Rietveld 408576698