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

Side by Side Diff: content/common/common.sb

Issue 1849343003: mac: Remove IsOSSnowLeopard(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 8 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
« no previous file with comments | « chrome/browser/ui/cocoa/toolbar/toolbar_controller.mm ('k') | content/common/sandbox_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ;; 1 ;;
2 ;; Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 ;; Copyright (c) 2012 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 ; This configuration file isn't used on it's own, but instead implicitly 6 ; This configuration file isn't used on it's own, but instead implicitly
7 ; included at the start of all other sandbox configuration files in Chrome. 7 ; included at the start of all other sandbox configuration files in Chrome.
8 (version 1) 8 (version 1)
9 9
10 ; Helper function to check if a param is set to true. 10 ; Helper function to check if a param is set to true.
11 (define (param-true? str) (string=? (param str) "TRUE")) 11 (define (param-true? str) (string=? (param str) "TRUE"))
12 12
13 ; Helper function to determine if a parameter is defined or not. 13 ; Helper function to determine if a parameter is defined or not.
14 (define (param-defined? str) (string? (param str))) 14 (define (param-defined? str) (string? (param str)))
15 15
16 ; Define constants for all of the parameter strings passed in. 16 ; Define constants for all of the parameter strings passed in.
17 (define disable-sandbox-denial-logging "DISABLE_SANDBOX_DENIAL_LOGGING") 17 (define disable-sandbox-denial-logging "DISABLE_SANDBOX_DENIAL_LOGGING")
18 (define enable-logging "ENABLE_LOGGING") 18 (define enable-logging "ENABLE_LOGGING")
19 (define component-build-workaround "COMPONENT_BUILD_WORKAROUND")
20 (define permitted-dir "PERMITTED_DIR") 19 (define permitted-dir "PERMITTED_DIR")
21 (define homedir-as-literal "USER_HOMEDIR_AS_LITERAL") 20 (define homedir-as-literal "USER_HOMEDIR_AS_LITERAL")
22 (define lion-or-later "LION_OR_LATER") 21 (define lion-or-later "LION_OR_LATER")
23 (define elcap-or-later "ELCAP_OR_LATER") 22 (define elcap-or-later "ELCAP_OR_LATER")
24 23
25 ; Consumes a subpath and appends it to the user's homedir path. 24 ; Consumes a subpath and appends it to the user's homedir path.
26 (define (user-homedir-path subpath) (string-append (param homedir-as-literal) su bpath)) 25 (define (user-homedir-path subpath) (string-append (param homedir-as-literal) su bpath))
27 26
28 ; DISABLE_SANDBOX_DENIAL_LOGGING turns off log messages in the system log. 27 ; DISABLE_SANDBOX_DENIAL_LOGGING turns off log messages in the system log.
29 (if (param-true? disable-sandbox-denial-logging) 28 (if (param-true? disable-sandbox-denial-logging)
(...skipping 13 matching lines...) Expand all
43 (allow file-read* 42 (allow file-read*
44 (regex #"^/System/Library/Frameworks($|/)") 43 (regex #"^/System/Library/Frameworks($|/)")
45 (regex #"^/System/Library/PrivateFrameworks($|/)") 44 (regex #"^/System/Library/PrivateFrameworks($|/)")
46 (regex #"^/System/Library/CoreServices($|/)")) 45 (regex #"^/System/Library/CoreServices($|/)"))
47 46
48 (allow ipc-posix-shm) 47 (allow ipc-posix-shm)
49 48
50 ; Allow direct access to /dev/urandom, similar to Linux/POSIX, to allow 49 ; Allow direct access to /dev/urandom, similar to Linux/POSIX, to allow
51 ; third party code (eg: bits of Adobe Flash and NSS) to function properly. 50 ; third party code (eg: bits of Adobe Flash and NSS) to function properly.
52 (allow file-read-data file-read-metadata (literal "/dev/urandom")) 51 (allow file-read-data file-read-metadata (literal "/dev/urandom"))
53
54 ; Enables reading file metadata for the Chrome bundle and its parent paths.
55 ; https://crbug.com/127465
56 (if (and (param-defined? component-build-workaround)
57 (param-true? component-build-workaround))
58 (allow file-read-metadata ))
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/toolbar/toolbar_controller.mm ('k') | content/common/sandbox_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698