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

Side by Side Diff: components/payments/content/payment_response_helper.h

Issue 2811593009: [Payments] move //components/payments/content/*.mojom files to //components/payments/mojom (Closed)
Patch Set: Reland after updating chrome_content_browser_client.cc to fix android build 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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_ 5 #ifndef COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_
6 #define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_ 6 #define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "components/payments/content/payment_request.mojom.h"
10 #include "components/payments/core/payment_instrument.h" 9 #include "components/payments/core/payment_instrument.h"
10 #include "components/payments/mojom/payment_request.mojom.h"
11 11
12 namespace autofill { 12 namespace autofill {
13 class AutofillProfile; 13 class AutofillProfile;
14 } // namespace autofill 14 } // namespace autofill
15 15
16 namespace payments { 16 namespace payments {
17 17
18 class PaymentRequestSpec; 18 class PaymentRequestSpec;
19 19
20 // TODO(sebsg): Asynchronously normalize the billing and shipping addresses 20 // TODO(sebsg): Asynchronously normalize the billing and shipping addresses
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 // Not owned, can be null (dependent on the spec). 62 // Not owned, can be null (dependent on the spec).
63 autofill::AutofillProfile* selected_shipping_profile_; 63 autofill::AutofillProfile* selected_shipping_profile_;
64 autofill::AutofillProfile* selected_contact_profile_; 64 autofill::AutofillProfile* selected_contact_profile_;
65 65
66 DISALLOW_COPY_AND_ASSIGN(PaymentResponseHelper); 66 DISALLOW_COPY_AND_ASSIGN(PaymentResponseHelper);
67 }; 67 };
68 68
69 } // namespace payments 69 } // namespace payments
70 70
71 #endif // COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_ 71 #endif // COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698