Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(467)

Side by Side Diff: chrome/renderer/renderer.sb

Issue 174630: Merge 24674 - Poke a hole in the Sandbox for sending signals to self.... (Closed) Base URL: svn://chrome-svn/chrome/branches/203/src/
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:mergeinfo
Merged /trunk/src/chrome/renderer/renderer.sb:r24674
Merged /branches/chrome_webkit_merge_branch/chrome/renderer/renderer.sb:r69-2775
OLDNEW
1 ;; 1 ;;
2 ;; Copyright (c) 2009 The Chromium Authors. All rights reserved. 2 ;; Copyright (c) 2009 The Chromium Authors. All rights reserved.
3 ;; Use of this source code is governed by a BSD-style license that can be 3 ;; Use of this source code is governed by a BSD-style license that can be
4 ;; found in the LICENSE file. 4 ;; found in the LICENSE file.
5 ;; 5 ;;
6 (version 1) 6 (version 1)
7 (deny default) 7 (deny default)
8 8
9 ; Allow sending signals to self - http://crbug.com/20370
10 (allow %signal-self)
11
9 ; Needed for full-page-zoomed controls - http://crbug.com/11325 12 ; Needed for full-page-zoomed controls - http://crbug.com/11325
10 (allow sysctl-read) 13 (allow sysctl-read)
11 14
12 ; Each line is marked with the System version that needs it. 15 ; Each line is marked with the System version that needs it.
13 ; This profile is tested with the following system versions: 16 ; This profile is tested with the following system versions:
14 ; 10.5.6, 10.6 seed release 17 ; 10.5.6, 10.6 seed release
15 18
16 ; Allow following symlinks 19 ; Allow following symlinks
17 (allow file-read-metadata) ; 10.5.6 20 (allow file-read-metadata) ; 10.5.6
18 21
19 ; Loading System Libraries. 22 ; Loading System Libraries.
20 (allow file-read-data (regex #"^/System/Library/Frameworks")) ; 10.5.6 23 (allow file-read-data (regex #"^/System/Library/Frameworks")) ; 10.5.6
21 (allow file-read-data (regex #"^/System/Library/PrivateFrameworks")) ; 10.5.6 24 (allow file-read-data (regex #"^/System/Library/PrivateFrameworks")) ; 10.5.6
22 (allow file-read-data (regex #"^/System/Library/CoreServices")) ; 10.5.6 25 (allow file-read-data (regex #"^/System/Library/CoreServices")) ; 10.5.6
23 26
24 ; Needed for Fonts. 27 ; Needed for Fonts.
25 (allow file-read-data (regex #"^/System/Library/Fonts")) ; 10.5.6 28 (allow file-read-data (regex #"^/System/Library/Fonts")) ; 10.5.6
26 (allow file-read-data (regex #"^/Library/Fonts")) ; 10.6 seed release 29 (allow file-read-data (regex #"^/Library/Fonts")) ; 10.6 seed release
27 (allow mach-lookup (global-name "com.apple.FontObjectsServer")) ; 10.5.6 30 (allow mach-lookup (global-name "com.apple.FontObjectsServer")) ; 10.5.6
28 (allow mach-lookup (global-name "com.apple.FontServer")) ; 10.6 seed release 31 (allow mach-lookup (global-name "com.apple.FontServer")) ; 10.6 seed release
29 32
30 ; USER_HOMEDIR is substitued at runtime - http://crbug.com/11269 33 ; USER_HOMEDIR is substitued at runtime - http://crbug.com/11269
31 (allow file-read-data (regex #"^USER_HOMEDIR/Library/Fonts")) ; 10.6 seed relea se 34 (allow file-read-data (regex #"^USER_HOMEDIR/Library/Fonts")) ; 10.6 seed relea se
32 35
33 ; Needed for IPC on 10.6 36 ; Needed for IPC on 10.6
34 (allow ipc-posix-shm) 37 (allow ipc-posix-shm)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698