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

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

Issue 251613002: Broadcast NotifyTimezoneChange to all RenderProcessHosts when the system time zone changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
OLDNEW
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.5.6 10 (allow file-read* (regex #"^/System/Library/Fonts($|/)")) ; 10.5.6
(...skipping 11 matching lines...) Expand all
22 ) 22 )
23 23
24 ; http://crbug.com/11269 24 ; http://crbug.com/11269
25 (allow file-read* (subpath "@USER_HOMEDIR_AS_LITERAL@/Library/Fonts")) ; 10.6 25 (allow file-read* (subpath "@USER_HOMEDIR_AS_LITERAL@/Library/Fonts")) ; 10.6
26 26
27 ; http://crbug.com/60917 27 ; http://crbug.com/60917
28 (allow file-read-metadata 28 (allow file-read-metadata
29 (literal "/") 29 (literal "/")
30 (literal "/var") 30 (literal "/var")
31 ) 31 )
32
33 ; http://crbug.com/288697
jeremy 2014/04/29 11:50:52 I assume there is no way to add code to sandbox wa
Mark Mentovai 2014/04/29 13:00:40 jeremy wrote:
34 (allow file-read*
35 (regex #"^/(private/)?etc/localtime$")
36 (regex #"^/usr/share/zoneinfo/")
37 )
38 (allow file-read-metadata
39 (regex #"^/(private/)?etc$")
40 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698