| Index: chrome/browser/extensions/extension_management_api.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_management_api.cc (revision 60374)
|
| +++ chrome/browser/extensions/extension_management_api.cc (working copy)
|
| @@ -36,10 +36,9 @@
|
| const char kOptionsUrlKey[] = "optionsUrl";
|
| const char kSizeKey[] = "size";
|
| const char kUrlKey[] = "url";
|
| -const char kVersionKey[] = "version";
|
|
|
| const char kNoExtensionError[] = "No extension with id *";
|
| -const char kNotAnAppError[] = "Extension * is not an App";
|
| +
|
| }
|
|
|
| ExtensionsService* ExtensionManagementFunction::service() {
|
| @@ -53,7 +52,6 @@
|
| info->SetBoolean(kIsAppKey, extension.is_app());
|
| info->SetString(kNameKey, extension.name());
|
| info->SetBoolean(kEnabledKey, enabled);
|
| - info->SetString(kVersionKey, extension.VersionString());
|
| if (!extension.options_url().is_empty())
|
| info->SetString(kOptionsUrlKey,
|
| extension.options_url().possibly_invalid_spec());
|
| @@ -102,27 +100,6 @@
|
| return true;
|
| }
|
|
|
| -bool LaunchAppFunction::RunImpl() {
|
| - std::string extension_id;
|
| - EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &extension_id));
|
| - Extension* extension = service()->GetExtensionById(extension_id, true);
|
| - if (!extension) {
|
| - error_ = ExtensionErrorUtils::FormatErrorMessage(kNoExtensionError,
|
| - extension_id);
|
| - return false;
|
| - }
|
| - if (!extension->is_app()) {
|
| - error_ = ExtensionErrorUtils::FormatErrorMessage(kNotAnAppError,
|
| - extension_id);
|
| - return false;
|
| - }
|
| -
|
| - extension_misc::LaunchContainer container = extension->launch_container();
|
| - Browser::OpenApplication(profile(), extension, container);
|
| -
|
| - return true;
|
| -}
|
| -
|
| bool SetEnabledFunction::RunImpl() {
|
| std::string extension_id;
|
| bool enable;
|
|
|