electron/shell/browser/mac/in_app_purchase.h

35 lines
906 B
C
Raw Normal View History

2017-11-30 13:27:33 +00:00
// Copyright (c) 2017 Amaplex Software, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
2019-06-19 20:56:58 +00:00
#ifndef SHELL_BROWSER_MAC_IN_APP_PURCHASE_H_
#define SHELL_BROWSER_MAC_IN_APP_PURCHASE_H_
2017-11-30 13:27:33 +00:00
#include <string>
#include "base/callback.h"
namespace in_app_purchase {
// --------------------------- Typedefs ---------------------------
typedef base::OnceCallback<void(bool isProductValid)> InAppPurchaseCallback;
2017-11-30 13:27:33 +00:00
// --------------------------- Functions ---------------------------
bool CanMakePayments(void);
void FinishAllTransactions(void);
void FinishTransactionByDate(const std::string& date);
2017-11-30 13:27:33 +00:00
std::string GetReceiptURL(void);
void PurchaseProduct(const std::string& productID,
int quantity,
InAppPurchaseCallback callback);
2017-11-30 13:27:33 +00:00
} // namespace in_app_purchase
2019-06-19 20:56:58 +00:00
#endif // SHELL_BROWSER_MAC_IN_APP_PURCHASE_H_