1 // Copyright 2019 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 #ifndef CONTENT_PUBLIC_BROWSER_SUPPORTED_DELEGATIONS_H_
6 #define CONTENT_PUBLIC_BROWSER_SUPPORTED_DELEGATIONS_H_
7 
8 #include "content/common/content_export.h"
9 
10 namespace content {
11 
12 // This class represents the supported delegations of the StoredPaymentApp.
13 struct CONTENT_EXPORT SupportedDelegations {
14   SupportedDelegations();
15   ~SupportedDelegations();
16 
17   bool shipping_address = false;
18   bool payer_name = false;
19   bool payer_phone = false;
20   bool payer_email = false;
21 };
22 
23 }  // namespace content
24 
25 #endif  // CONTENT_PUBLIC_BROWSER_SUPPORTED_DELEGATIONS_H_
26