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

Side by Side Diff: components/payments/content/utility/payment_manifest_parser.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
« no previous file with comments | « components/payments/content/utility/BUILD.gn ('k') | components/payments/mojom/BUILD.gn » ('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 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_UTILITY_PAYMENT_MANIFEST_PARSER_H_ 5 #ifndef COMPONENTS_PAYMENTS_CONTENT_UTILITY_PAYMENT_MANIFEST_PARSER_H_
6 #define COMPONENTS_PAYMENTS_CONTENT_UTILITY_PAYMENT_MANIFEST_PARSER_H_ 6 #define COMPONENTS_PAYMENTS_CONTENT_UTILITY_PAYMENT_MANIFEST_PARSER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "components/payments/content/payment_manifest_parser.mojom.h" 12 #include "components/payments/mojom/payment_manifest_parser.mojom.h"
13 #include "url/gurl.h" 13 #include "url/gurl.h"
14 14
15 namespace payments { 15 namespace payments {
16 16
17 // Parser for payment method manifests and web app manifests. Should be used 17 // Parser for payment method manifests and web app manifests. Should be used
18 // only in a sandboxed utility process. 18 // only in a sandboxed utility process.
19 // 19 //
20 // Example valid payment method manifest structure: 20 // Example valid payment method manifest structure:
21 // 21 //
22 // { 22 // {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 void ParseWebAppManifest(const std::string& content, 61 void ParseWebAppManifest(const std::string& content,
62 const ParseWebAppManifestCallback& callack) override; 62 const ParseWebAppManifestCallback& callack) override;
63 63
64 private: 64 private:
65 DISALLOW_COPY_AND_ASSIGN(PaymentManifestParser); 65 DISALLOW_COPY_AND_ASSIGN(PaymentManifestParser);
66 }; 66 };
67 67
68 } // namespace payments 68 } // namespace payments
69 69
70 #endif // COMPONENTS_PAYMENTS_CONTENT_UTILITY_PAYMENT_MANIFEST_PARSER_H_ 70 #endif // COMPONENTS_PAYMENTS_CONTENT_UTILITY_PAYMENT_MANIFEST_PARSER_H_
OLDNEW
« no previous file with comments | « components/payments/content/utility/BUILD.gn ('k') | components/payments/mojom/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698