1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_INLINE_INSTALL_PRIVATE_INLINE_INSTALL_PRIVATE_API_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_INLINE_INSTALL_PRIVATE_INLINE_INSTALL_PRIVATE_API_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "chrome/common/extensions/webstore_install_result.h"
10 #include "extensions/browser/extension_function.h"
12 namespace extensions
{
14 class InlineInstallPrivateInstallFunction
15 : public UIThreadExtensionFunction
{
17 InlineInstallPrivateInstallFunction();
20 ~InlineInstallPrivateInstallFunction() override
;
22 ResponseAction
Run() override
;
25 void InstallerCallback(bool success
,
26 const std::string
& error
,
27 webstore_install::Result result
);
29 // Helper to create a response to be returned either synchronously or in
31 ResponseValue
CreateResponse(const std::string
& error
,
32 webstore_install::Result result
);
34 DECLARE_EXTENSION_FUNCTION("inlineInstallPrivate.install",
35 INLINE_INSTALL_PRIVATE_INSTALL
);
38 } // namespace extensions
40 #endif // CHROME_BROWSER_EXTENSIONS_API_INLINE_INSTALL_PRIVATE_INLINE_INSTALL_PRIVATE_API_H_