| OLD | NEW |
| (Empty) |
| 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. | |
| 4 | |
| 5 #include "athena/extensions/public/extensions_delegate.h" | |
| 6 | |
| 7 #include "athena/extensions/shell/athena_shell_app_window_client.h" | |
| 8 #include "base/macros.h" | |
| 9 #include "extensions/browser/extension_registry.h" | |
| 10 #include "extensions/browser/install/extension_install_ui.h" | |
| 11 #include "extensions/common/extension_set.h" | |
| 12 #include "extensions/shell/browser/shell_extension_system.h" | |
| 13 | |
| 14 namespace athena { | |
| 15 namespace { | |
| 16 | |
| 17 class ShellExtensionsDelegate : public ExtensionsDelegate { | |
| 18 public: | |
| 19 explicit ShellExtensionsDelegate(content::BrowserContext* context) | |
| 20 : context_(context), | |
| 21 extension_system_(static_cast<extensions::ShellExtensionSystem*>( | |
| 22 extensions::ExtensionSystem::Get(context))) { | |
| 23 extensions::AppWindowClient::Set(&app_window_client_); | |
| 24 } | |
| 25 | |
| 26 ~ShellExtensionsDelegate() override { | |
| 27 extensions::AppWindowClient::Set(nullptr); | |
| 28 } | |
| 29 | |
| 30 private: | |
| 31 // ExtensionsDelegate: | |
| 32 content::BrowserContext* GetBrowserContext() const override { | |
| 33 return context_; | |
| 34 } | |
| 35 | |
| 36 const extensions::ExtensionSet& GetInstalledExtensions() override { | |
| 37 return extensions::ExtensionRegistry::Get(context_)->enabled_extensions(); | |
| 38 } | |
| 39 bool LaunchApp(const std::string& app_id) override { | |
| 40 extension_system_->LaunchApp(app_id); | |
| 41 return true; | |
| 42 } | |
| 43 | |
| 44 bool UnloadApp(const std::string& app_id) override { return false; } | |
| 45 | |
| 46 scoped_ptr<extensions::ExtensionInstallUI> CreateExtensionInstallUI() | |
| 47 override { | |
| 48 return scoped_ptr<extensions::ExtensionInstallUI>(); | |
| 49 } | |
| 50 | |
| 51 content::BrowserContext* context_; | |
| 52 extensions::ShellExtensionSystem* extension_system_; | |
| 53 | |
| 54 AthenaShellAppWindowClient app_window_client_; | |
| 55 | |
| 56 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsDelegate); | |
| 57 }; | |
| 58 | |
| 59 } // namespace | |
| 60 | |
| 61 // static | |
| 62 void ExtensionsDelegate::CreateExtensionsDelegate( | |
| 63 content::BrowserContext* context) { | |
| 64 new ShellExtensionsDelegate(context); | |
| 65 } | |
| 66 | |
| 67 } // namespace athena | |
| OLD | NEW |