blob: 817e5155fade3ffa180edc5b74b6e1db32e1ad74 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_PUBLIC_BROWSER_SUPPORTED_DELEGATIONS_H_
#define CONTENT_PUBLIC_BROWSER_SUPPORTED_DELEGATIONS_H_
#include "content/common/content_export.h"
namespace content {
// This class represents the supported delegations of the StoredPaymentApp.
struct CONTENT_EXPORT SupportedDelegations {
SupportedDelegations();
~SupportedDelegations();
bool shipping_address = false;
bool payer_name = false;
bool payer_phone = false;
bool payer_email = false;
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_SUPPORTED_DELEGATIONS_H_