chrome.system.memory

Description: The chrome.system.memory API.
Availability: Since Chrome 35.
Permissions: "system.memory"

Summary

Methods
getInfo chrome.system.memory.getInfo(function callback)

Methods

getInfo

chrome.system.memory.getInfo(function callback)

Get physical memory information.

Parameters
function callback

The callback parameter should be a function that looks like this:

function(object info) {...};
object info
double capacity

The total amount of physical memory capacity, in bytes.

double availableCapacity

The amount of available capacity, in bytes.