electron/shell/browser/mac/in_app_purchase.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
959 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.
#ifndef ELECTRON_SHELL_BROWSER_MAC_IN_APP_PURCHASE_H_
#define ELECTRON_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();
2017-11-30 13:27:33 +00:00
void RestoreCompletedTransactions();
void FinishAllTransactions();
void FinishTransactionByDate(const std::string& date);
std::string GetReceiptURL();
2017-11-30 13:27:33 +00:00
void PurchaseProduct(const std::string& productID,
int quantity,
InAppPurchaseCallback callback);
2017-11-30 13:27:33 +00:00
} // namespace in_app_purchase
#endif // ELECTRON_SHELL_BROWSER_MAC_IN_APP_PURCHASE_H_