| Index: chrome/browser/extensions/extension_webstore_private_api.h
|
| diff --git a/chrome/browser/extensions/extension_webstore_private_api.h b/chrome/browser/extensions/extension_webstore_private_api.h
|
| index 1f2abffdd8fc2eafccc77f172c4f41a195d43b5c..0ba27aca70f5cbdf7fe47c74e99249fcc087021d 100644
|
| --- a/chrome/browser/extensions/extension_webstore_private_api.h
|
| +++ b/chrome/browser/extensions/extension_webstore_private_api.h
|
| @@ -8,6 +8,16 @@
|
|
|
| #include "chrome/browser/extensions/extension_function.h"
|
|
|
| +class InstallFunction : public SyncExtensionFunction {
|
| + public:
|
| + static void SetTestingInstallBaseUrl(const char* testing_install_base_url);
|
| +
|
| + protected:
|
| + ~InstallFunction() {}
|
| + virtual bool RunImpl();
|
| + DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.install");
|
| +};
|
| +
|
| class GetSyncLoginFunction : public SyncExtensionFunction {
|
| virtual bool RunImpl();
|
| DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.getSyncLogin");
|
|
|