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

Side by Side Diff: components/payments/content/android/payment_manifest_parser.mojom

Issue 2645813006: Download web payment manifests. (Closed)
Patch Set: At most INT_MAX sections in manifest and fingperints in section Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 [JavaPackage="org.chromium.payments.mojom"]
6 module payments.mojom;
7
8 struct PaymentManifestSection {
9 string package_name;
10 // Optional version number. 0 if not defined.
11 int64 version;
12 array<string> sha256_cert_fingerprints;
palmer 2017/03/03 22:56:31 Is it possible to express a tighter type-fit, e.g.
please use gerrit instead 2017/03/09 18:05:33 Tightened the type. Added a comment on what this a
13 };
14
15 interface PaymentManifestParser {
16 Parse(string content) => (array<PaymentManifestSection> manifest);
17 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698