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..30d0f983505813656a19d422cba0acc3c5f978f4 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,24 @@ class WebstorePrivateGetEphemeralAppsEnabledFunction |
ExtensionFunction::ResponseAction Run() override; |
}; |
+class WebstorePrivateIsExtensionPendingCustodianApprovalFunction |
+ : public UIThreadExtensionFunction { |
+ public: |
+ DECLARE_EXTENSION_FUNCTION( |
+ "webstorePrivate.isExtensionCustodianPendingApproval", |
Marc Treib
2016/05/09 13:44:57
isExtensionPendingCustodianApproval
mamir
2016/05/09 14:42:19
Done.
Marc Treib
2016/05/09 14:50:57
No. Please proofread your code.
mamir
2016/05/09 15:30:14
Sorry!
Done.
|
+ WEBSTOREPRIVATE_ISEXTENSIONPENDINGCUSTODIANAPPROVAL) |
+ |
+ WebstorePrivateIsExtensionPendingCustodianApprovalFunction(); |
+ |
+ private: |
+ ~WebstorePrivateIsExtensionPendingCustodianApprovalFunction() override; |
+ |
+ // ExtensionFunction: |
+ ExtensionFunction::ResponseAction Run() override; |
+ |
+ ChromeExtensionFunctionDetails chrome_details_; |
+}; |
+ |
} // namespace extensions |
#endif // CHROME_BROWSER_EXTENSIONS_API_WEBSTORE_PRIVATE_WEBSTORE_PRIVATE_API_H_ |