Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / browser / extensions / api / inline_install_private / inline_install_private_api.h
blob1c04f7cd38a0c36533a8dc91a51f81051d144b3c
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 {
16 public:
17 InlineInstallPrivateInstallFunction();
19 protected:
20 ~InlineInstallPrivateInstallFunction() override;
22 ResponseAction Run() override;
24 private:
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
30 // InstallerCallback.
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_