| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "athena/extensions/public/extensions_delegate.h" | 5 #include "athena/extensions/public/extensions_delegate.h" |
| 6 | 6 |
| 7 #include "athena/extensions/shell/athena_shell_app_window_client.h" | 7 #include "athena/extensions/shell/athena_shell_app_window_client.h" |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "extensions/common/extension_set.h" | 9 #include "extensions/common/extension_set.h" |
| 10 #include "extensions/shell/browser/shell_extension_system.h" | 10 #include "extensions/shell/browser/shell_extension_system.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 shell_extensions_.Insert(extension_system_->extension()); | 34 shell_extensions_.Insert(extension_system_->extension()); |
| 35 return shell_extensions_; | 35 return shell_extensions_; |
| 36 } | 36 } |
| 37 virtual bool LaunchApp(const std::string& app_id) override { | 37 virtual bool LaunchApp(const std::string& app_id) override { |
| 38 extension_system_->LaunchApp(); | 38 extension_system_->LaunchApp(); |
| 39 return true; | 39 return true; |
| 40 } | 40 } |
| 41 | 41 |
| 42 virtual bool UnloadApp(const std::string& app_id) override { return false; } | 42 virtual bool UnloadApp(const std::string& app_id) override { return false; } |
| 43 | 43 |
| 44 virtual extensions::ExtensionInstallUI* CreateExtensionInstallUI() override { |
| 45 return NULL; |
| 46 } |
| 47 |
| 44 content::BrowserContext* context_; | 48 content::BrowserContext* context_; |
| 45 extensions::ShellExtensionSystem* extension_system_; | 49 extensions::ShellExtensionSystem* extension_system_; |
| 46 extensions::ExtensionSet shell_extensions_; | 50 extensions::ExtensionSet shell_extensions_; |
| 47 | 51 |
| 48 AthenaShellAppWindowClient app_window_client_; | 52 AthenaShellAppWindowClient app_window_client_; |
| 49 | 53 |
| 50 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsDelegate); | 54 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsDelegate); |
| 51 }; | 55 }; |
| 52 | 56 |
| 53 } // namespace | 57 } // namespace |
| 54 | 58 |
| 55 // static | 59 // static |
| 56 void ExtensionsDelegate::CreateExtensionsDelegate( | 60 void ExtensionsDelegate::CreateExtensionsDelegate( |
| 57 content::BrowserContext* context) { | 61 content::BrowserContext* context) { |
| 58 new ShellExtensionsDelegate(context); | 62 new ShellExtensionsDelegate(context); |
| 59 } | 63 } |
| 60 | 64 |
| 61 } // namespace athena | 65 } // namespace athena |
| OLD | NEW |