summaryrefslogtreecommitdiffstats
path: root/chrome/browser/android/seccomp_support_detector.cc
Commit message (Collapse)AuthorAgeFilesLines
* chrome/browser: Remove use of MessageLoopProxy and deprecated MessageLoop APIsskyostil2015-06-121-1/+0
| | | | | | | | | | This patch was mostly autogenerated with https://codereview.chromium.org/1010073002/. BUG=465354 Review URL: https://codereview.chromium.org/1143343005 Cr-Commit-Position: refs/heads/master@{#334147}
* Move the SeccompSupportDetector to be in-process.rsesek2015-06-081-46/+24
| | | | | | | | | | | | | | Some of this work was previously done in the utility process. Since processes are expensive on Android, and doing so hasn't helped defend against detection issues, this is a simpler solution. BUG=490948,468455 R=leecam@chromium.org,thestig@chromium.org TBR=enne@chromium.org Review URL: https://codereview.chromium.org/1161053004 Cr-Commit-Position: refs/heads/master@{#333372}
* Stop probing for the seccomp system call.rsesek2015-04-221-28/+4
| | | | | | | | | | | | | Doing so can cause kernel panics on certain LGE devices, so collection of that data will be skipped. Android kernel versions and seccomp prctl support will still be collected. BUG=478478,468455 R=jln@chromium.org Review URL: https://codereview.chromium.org/1100933002 Cr-Commit-Position: refs/heads/master@{#326340}
* Give names to all utility processes.thestig2015-04-071-0/+4
| | | | | | | | BUG=472340 Review URL: https://codereview.chromium.org/1062873003 Cr-Commit-Position: refs/heads/master@{#324130}
* Add SeccompSupportDetector for Android.rsesek2015-03-191-0/+127
This class will report to UMA the Android kernel version and the level of kernel support for seccomp-bpf sandboxing. BUG=468455 Review URL: https://codereview.chromium.org/1018953004 Cr-Commit-Position: refs/heads/master@{#321451}