Chromium Code Reviews| OLD | NEW |
|---|---|
| 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) | |
|
Nico
2009/08/27 22:05:32
That's the only line in this file that contains a
| |
| 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) |
| OLD | NEW |