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

Side by Side Diff: components/payments/content/payment_request_state.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_REQUEST_STATE_H_ 5 #ifndef COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_STATE_H_
6 #define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_STATE_H_ 6 #define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_STATE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/observer_list.h" 13 #include "base/observer_list.h"
14 #include "components/payments/content/payment_request.mojom.h"
15 #include "components/payments/content/payment_response_helper.h" 14 #include "components/payments/content/payment_response_helper.h"
15 #include "components/payments/mojom/payment_request.mojom.h"
16 16
17 namespace i18n { 17 namespace i18n {
18 namespace addressinput { 18 namespace addressinput {
19 class Storage; 19 class Storage;
20 class Source; 20 class Source;
21 } // namespace addressinput 21 } // namespace addressinput
22 } // namespace i18n 22 } // namespace i18n
23 23
24 namespace autofill { 24 namespace autofill {
25 class AutofillProfile; 25 class AutofillProfile;
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 std::unique_ptr<PaymentResponseHelper> response_helper_; 192 std::unique_ptr<PaymentResponseHelper> response_helper_;
193 193
194 base::ObserverList<Observer> observers_; 194 base::ObserverList<Observer> observers_;
195 195
196 DISALLOW_COPY_AND_ASSIGN(PaymentRequestState); 196 DISALLOW_COPY_AND_ASSIGN(PaymentRequestState);
197 }; 197 };
198 198
199 } // namespace payments 199 } // namespace payments
200 200
201 #endif // COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_STATE_H_ 201 #endif // COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_STATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698