diff options
author | gspencer@chromium.org <gspencer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-23 22:57:55 +0000 |
---|---|---|
committer | gspencer@chromium.org <gspencer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-23 22:57:55 +0000 |
commit | cfa25bde323a4c21b8814cbc1df61ccbfa9d9314 (patch) | |
tree | 3e6797427d89e2fbc70401da278c7e3e7c3a3a0a /chrome/browser/zygote_host_linux.h | |
parent | 47a68cff12f3b60e16a585b90643f493a7732337 (diff) | |
download | chromium_src-cfa25bde323a4c21b8814cbc1df61ccbfa9d9314.zip chromium_src-cfa25bde323a4c21b8814cbc1df61ccbfa9d9314.tar.gz chromium_src-cfa25bde323a4c21b8814cbc1df61ccbfa9d9314.tar.bz2 |
This change implements OOM priority management for ChromeOS
This adds periodic OOM score adjustment, based on the last access time of the tab, whether or not it is pinned, and (of course) how much memory it is using.
BUG=http://crosbug.com/8990
TEST=Ran some ui_tests, ran on device.
Review URL: http://codereview.chromium.org/4498001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67175 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/zygote_host_linux.h')
-rw-r--r-- | chrome/browser/zygote_host_linux.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/zygote_host_linux.h b/chrome/browser/zygote_host_linux.h index dd00336..ffb7964 100644 --- a/chrome/browser/zygote_host_linux.h +++ b/chrome/browser/zygote_host_linux.h @@ -67,6 +67,9 @@ class ZygoteHost { return 0; } + // Adjust the OOM score of the given renderer's PID. + void AdjustRendererOOMScore(base::ProcessHandle process_handle, int score); + private: friend struct DefaultSingletonTraits<ZygoteHost>; ZygoteHost(); |