| OLD | NEW |
| 1 ;; | 1 ;; |
| 2 ;; Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 ;; Copyright (c) 2011 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 | 6 |
| 7 ; *** The contents of content/common/common.sb are implicitly included here. *** | 7 ; *** The contents of content/common/common.sb are implicitly included here. *** |
| 8 | 8 |
| 9 ; Needed for Fonts. | 9 ; Needed for Fonts. |
| 10 (allow file-read* (regex #"^/System/Library/Fonts($|/)")) | 10 (allow file-read* (regex #"^/System/Library/Fonts($|/)")) |
| 11 (allow file-read* (regex #"^/Library/Fonts($|/)")) | 11 (allow file-read* (regex #"^/Library/Fonts($|/)")) |
| 12 (allow mach-lookup (global-name "com.apple.FontObjectsServer")) | 12 (allow mach-lookup (global-name "com.apple.FontObjectsServer")) |
| 13 (allow mach-lookup (global-name "com.apple.FontServer")) | 13 (allow mach-lookup (global-name "com.apple.FontServer")) |
| 14 (allow mach-lookup (global-name "com.apple.fonts")) |
| 14 | 15 |
| 15 (allow file-read* | 16 (allow file-read* |
| 16 (regex #"^/System/Library/ColorSync($|/)") ; https://crbug.com/46648 | 17 (regex #"^/System/Library/ColorSync($|/)") ; https://crbug.com/46648 |
| 17 (regex #"^/System/Library/Keyboard Layouts($|/)") ; https://crbug.com/152566 | 18 (regex #"^/System/Library/Keyboard Layouts($|/)") ; https://crbug.com/152566 |
| 18 (literal "/Library/Preferences/.GlobalPreferences.plist") ; https://crbug.com/
60917 | 19 (literal "/Library/Preferences/.GlobalPreferences.plist") ; https://crbug.com/
60917 |
| 19 (literal (user-homedir-path "/Library/Preferences/.GlobalPreferences.plist"))) | 20 (literal (user-homedir-path "/Library/Preferences/.GlobalPreferences.plist"))) |
| 20 | 21 |
| 21 ; https://crbug.com/11269 | 22 ; https://crbug.com/11269 |
| 22 (allow file-read* (subpath (user-homedir-path "/Library/Fonts"))) | 23 (allow file-read* (subpath (user-homedir-path "/Library/Fonts"))) |
| 23 | 24 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 42 (literal "/usr/lib/libcsfde.dylib") | 43 (literal "/usr/lib/libcsfde.dylib") |
| 43 (literal "/usr/lib/libcurl.4.dylib") | 44 (literal "/usr/lib/libcurl.4.dylib") |
| 44 (literal "/usr/lib/libCoreStorage.dylib") | 45 (literal "/usr/lib/libCoreStorage.dylib") |
| 45 (literal "/usr/lib/libsasl2.2.dylib") | 46 (literal "/usr/lib/libsasl2.2.dylib") |
| 46 (literal "/usr/lib/libutil.dylib"))) | 47 (literal "/usr/lib/libutil.dylib"))) |
| 47 | 48 |
| 48 ; https://crbug.com/605840 | 49 ; https://crbug.com/605840 |
| 49 ; file-read-metadata /System/Library/LinguisticData/en/US/hyphenation.dat | 50 ; file-read-metadata /System/Library/LinguisticData/en/US/hyphenation.dat |
| 50 ; for CFStringIsHyphenationAvailableForLocale and CFStringGetHyphenationLocation
BeforeIndex | 51 ; for CFStringIsHyphenationAvailableForLocale and CFStringGetHyphenationLocation
BeforeIndex |
| 51 (allow file-read* (subpath "/System/Library/LinguisticData")) | 52 (allow file-read* (subpath "/System/Library/LinguisticData")) |
| OLD | NEW |