Files
electron/shell/browser/extensions/api/runtime/electron_runtime_api_delegate.cc

85 lines
2.7 KiB
C++

// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shell/browser/extensions/api/runtime/electron_runtime_api_delegate.h"
#include <string>
#include <string_view>
#include "base/logging.h"
#include "components/update_client/update_query_params.h"
#include "extensions/common/api/runtime.h"
#include "shell/browser/extensions/electron_extension_system.h"
using extensions::api::runtime::PlatformInfo;
namespace extensions {
ElectronRuntimeAPIDelegate::ElectronRuntimeAPIDelegate(
content::BrowserContext* browser_context)
: browser_context_(browser_context) {
DCHECK(browser_context_);
}
ElectronRuntimeAPIDelegate::~ElectronRuntimeAPIDelegate() = default;
void ElectronRuntimeAPIDelegate::AddUpdateObserver(UpdateObserver* observer) {}
void ElectronRuntimeAPIDelegate::RemoveUpdateObserver(
UpdateObserver* observer) {}
void ElectronRuntimeAPIDelegate::ReloadExtension(
const std::string& extension_id) {
static_cast<ElectronExtensionSystem*>(ExtensionSystem::Get(browser_context_))
->ReloadExtension(extension_id);
}
bool ElectronRuntimeAPIDelegate::CheckForUpdates(
const std::string& extension_id,
UpdateCheckCallback callback) {
LOG(INFO) << "chrome.runtime.requestUpdateCheck is not supported in Electron";
return false;
}
void ElectronRuntimeAPIDelegate::OpenURL(const GURL& uninstall_url) {
LOG(INFO) << "chrome.runtime.openURL is not supported in Electron";
}
bool ElectronRuntimeAPIDelegate::GetPlatformInfo(PlatformInfo* info) {
if (const std::string_view os = update_client::UpdateQueryParams::GetOS();
os == "mac") {
info->os = extensions::api::runtime::PlatformOs::kMac;
} else if (os == "win") {
info->os = extensions::api::runtime::PlatformOs::kWin;
} else if (os == "linux") {
info->os = extensions::api::runtime::PlatformOs::kLinux;
} else if (os == "openbsd") {
info->os = extensions::api::runtime::PlatformOs::kOpenbsd;
} else {
NOTREACHED();
}
if (const std::string_view arch = update_client::UpdateQueryParams::GetArch();
arch == "arm") {
info->arch = extensions::api::runtime::PlatformArch::kArm;
} else if (arch == "arm64") {
info->arch = extensions::api::runtime::PlatformArch::kArm64;
} else if (arch == "x86") {
info->arch = extensions::api::runtime::PlatformArch::kX86_32;
} else if (arch == "x64") {
info->arch = extensions::api::runtime::PlatformArch::kX86_64;
} else {
NOTREACHED();
}
return true;
}
bool ElectronRuntimeAPIDelegate::RestartDevice(std::string* error_message) {
*error_message = "Restart is not supported in Electron";
return false;
}
} // namespace extensions