runtime.PlatformNaclArch
Note:
This type is deprecated in favor of runtime.PlatformArch. PlatformArch is also available in runtime.PlatformInfo, which you obtain using runtime.getPlatformInfo().
The enumerated value representing the CPU instruction set architecture of Google Native Client used by the browser. This enum is deprecated, following the removal of Google Native Client from Google Chrome. As of 2026, Chromium intends to remove this enum.
Type
ARM-
The string literal
"arm". Represents all versions of the ARM ISA, including all 32-bit and 64-bit variants. Equivalent toPlatformArch.arm(32-bit variant) andPlatformArch.arm64combined into one value. X86_32-
The string literal
"x86-32". Represents the 32-bit variant of the x86 architecture. Equivalent toPlatformArch.x86_32. X86_64-
The string literal
"x86-64". Represents the 64-bit variant of the x86 architecture. Equivalent toPlatformArch.X86_64. MIPS-
The string literal
"mips". Represents the 32-bit variant of the MIPS ISA, which was never supported by official releases. Equivalent toPlatformArch.mips. MIPS64-
The string literal
"mips64". Represents the 64-bit variant of the MIPS ISA, which was never supported by official releases. Equivalent toPlatformArch.mips64.
Browser compatibility
Note:
This API is based on Chromium's chrome.runtime API. This documentation is derived from runtime.json in the Chromium code.