| Index: chrome/browser/extensions/api/webstore_private/webstore_private_api.h
|
| diff --git a/chrome/browser/extensions/api/webstore_private/webstore_private_api.h b/chrome/browser/extensions/api/webstore_private/webstore_private_api.h
|
| index 4e2c4b2dd702d6ed474d324bca3a408dc0bb023c..6a7f2ef009ea81a160da9b4a3d532fc960f1a786 100644
|
| --- a/chrome/browser/extensions/api/webstore_private/webstore_private_api.h
|
| +++ b/chrome/browser/extensions/api/webstore_private/webstore_private_api.h
|
| @@ -288,6 +288,25 @@ class WebstorePrivateGetEphemeralAppsEnabledFunction
|
| ExtensionFunction::ResponseAction Run() override;
|
| };
|
|
|
| +class WebstorePrivateIsPendingCustodianApprovalFunction
|
| + : public UIThreadExtensionFunction {
|
| + public:
|
| + DECLARE_EXTENSION_FUNCTION("webstorePrivate.isPendingCustodianApproval",
|
| + WEBSTOREPRIVATE_ISPENDINGCUSTODIANAPPROVAL)
|
| +
|
| + WebstorePrivateIsPendingCustodianApprovalFunction();
|
| +
|
| + private:
|
| + ~WebstorePrivateIsPendingCustodianApprovalFunction() override;
|
| +
|
| + // ExtensionFunction:
|
| + ExtensionFunction::ResponseAction Run() override;
|
| +
|
| + ExtensionFunction::ResponseValue BuildResponse(bool result);
|
| +
|
| + ChromeExtensionFunctionDetails chrome_details_;
|
| +};
|
| +
|
| } // namespace extensions
|
|
|
| #endif // CHROME_BROWSER_EXTENSIONS_API_WEBSTORE_PRIVATE_WEBSTORE_PRIVATE_API_H_
|
|
|