зеркало из https://github.com/electron/electron.git
chore: update `chrome.runtime.getPlatformInfo` impl (#39392)
chore: update chrome.runtime.getPlatformInfo impl
This commit is contained in:
Родитель
1b3c63145c
Коммит
5e59ddca1a
|
@ -37,10 +37,13 @@ void ElectronRuntimeAPIDelegate::ReloadExtension(
|
|||
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) {}
|
||||
void ElectronRuntimeAPIDelegate::OpenURL(const GURL& uninstall_url) {
|
||||
LOG(INFO) << "chrome.runtime.openURL is not supported in Electron";
|
||||
}
|
||||
|
||||
bool ElectronRuntimeAPIDelegate::GetPlatformInfo(PlatformInfo* info) {
|
||||
const char* os = update_client::UpdateQueryParams::GetOS();
|
||||
|
@ -74,9 +77,6 @@ bool ElectronRuntimeAPIDelegate::GetPlatformInfo(PlatformInfo* info) {
|
|||
const char* nacl_arch = update_client::UpdateQueryParams::GetNaclArch();
|
||||
if (strcmp(nacl_arch, "arm") == 0) {
|
||||
info->nacl_arch = extensions::api::runtime::PlatformNaclArch::kArm;
|
||||
} else if (strcmp(nacl_arch, "arm64") == 0) {
|
||||
// Use ARM for ARM64 NaCl, as ARM64 NaCl is not available.
|
||||
info->nacl_arch = extensions::api::runtime::PlatformNaclArch::kArm;
|
||||
} else if (strcmp(nacl_arch, "x86-32") == 0) {
|
||||
info->nacl_arch = extensions::api::runtime::PlatformNaclArch::kX86_32;
|
||||
} else if (strcmp(nacl_arch, "x86-64") == 0) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче