Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(302)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: sandbox/linux/seccomp/sandbox.h
Issue
371047
:
Allow the seccomp sandbox to be enabled, even if the suid sandbox has... (Closed)
Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: ''
Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
chrome/browser/zygote_main_linux.cc
chrome/renderer/renderer_main_platform_delegate_linux.cc
sandbox/linux/seccomp/access.cc
sandbox/linux/seccomp/clone.cc
sandbox/linux/seccomp/exit.cc
sandbox/linux/seccomp/ioctl.cc
sandbox/linux/seccomp/ipc.cc
sandbox/linux/seccomp/madvise.cc
sandbox/linux/seccomp/maps.h
sandbox/linux/seccomp/maps.cc
sandbox/linux/seccomp/mmap.cc
sandbox/linux/seccomp/mprotect.cc
sandbox/linux/seccomp/munmap.cc
sandbox/linux/seccomp/open.cc
sandbox/linux/seccomp/sandbox.h
sandbox/linux/seccomp/sandbox.cc
sandbox/linux/seccomp/sandbox_impl.h
sandbox/linux/seccomp/securemem.cc
sandbox/linux/seccomp/socketcall.cc
sandbox/linux/seccomp/stat.cc
sandbox/linux/seccomp/syscall_table.h
sandbox/linux/seccomp/trusted_process.cc
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« sandbox/linux/seccomp/open.cc
('k') |
sandbox/linux/seccomp/sandbox.cc »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
1 #ifndef SANDBOX_H__
1 #ifndef SANDBOX_H__
2 #define SANDBOX_H__
2 #define SANDBOX_H__
3
3
4
extern "C" int SupportsSeccompSandbox();
4
extern "C" int SupportsSeccompSandbox(
int proc_fd
);
5
extern "C" void SeccompSandboxSetProcSelfMaps(int proc_self_maps);
5 extern "C" void StartSeccompSandbox();
6 extern "C" void StartSeccompSandbox();
6
7
7 #endif // SANDBOX_H__
8 #endif // SANDBOX_H__
OLD
NEW
« no previous file with comments
|
« sandbox/linux/seccomp/open.cc
('k') |
sandbox/linux/seccomp/sandbox.cc »
('j') |
no next file with comments »
Issue 371047: Allow the seccomp sandbox to be enabled, even if the suid sandbox has... (Closed)
Created 11 years, 1 month ago by Markus (顧孟勤)
Modified 9 years, 7 months ago
Reviewers: agl
Base URL: svn://chrome-svn/chrome/trunk/src/
Comments: 3
This is Rietveld
408576698