Changeset 141433 in webkit


Ignore:
Timestamp:
Jan 31, 2013, 10:22:23 AM (13 years ago)
Author:
ap@apple.com
Message:

<rdar://problem/12695827> PPT: Make loading file URLs work with a sandboxed NetworkProcess

Address review comments.

  • NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in:
  • WebProcess/com.apple.WebProcess.sb.in:
Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r141432 r141433  
     12013-01-31  Alexey Proskuryakov  <ap@apple.com>
     2
     3        <rdar://problem/12695827> PPT: Make loading file URLs work with a sandboxed NetworkProcess
     4
     5        Address review comments.
     6
     7        * NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in:
     8        * WebProcess/com.apple.WebProcess.sb.in:
     9
    1102013-01-31  Anders Carlsson  <andersca@apple.com>
    211
  • trunk/Source/WebKit2/NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in

    r141335 r141433  
    2121         (literal "/Library/Preferences/com.apple.networkd.plist"))
    2222  (allow mach-lookup
    23          (global-name "com.apple.SystemConfiguration.PPPController")
     23         (global-name "com.apple.SystemConfiguration.PPPController") ;; FIXME (13121943): Is this necessary?
    2424         (global-name "com.apple.SystemConfiguration.SCNetworkReachability")
    2525         (global-name "com.apple.networkd"))
     
    116116    (remote udp))
    117117(allow file-read*
    118     (literal (string-append (param "HOME_DIR") "/Library/Preferences/com.apple.Kerberos.plist"))
    119     (literal (string-append (param "HOME_DIR") "/Library/Preferences/com.apple.GSS.plist"))
    120     (literal (string-append (param "HOME_DIR") "/Library/Preferences/edu.mit.Kerberos"))
     118    (home-subpath "/Library/Preferences/com.apple.Kerberos.plist")
     119    (home-subpath "/Library/Preferences/com.apple.GSS.plist")
     120    (home-subpath "/Library/Preferences/edu.mit.Kerberos")
    121121    (literal "/Library/Preferences/com.apple.Kerberos.plist")
    122122    (literal "/Library/Preferences/com.apple.GSS.plist")
  • trunk/Source/WebKit2/WebProcess/com.apple.WebProcess.sb.in

    r141027 r141433  
    147147       (global-name "com.apple.SecurityServer")
    148148       (global-name "com.apple.SystemConfiguration.configd")
    149        (global-name "com.apple.SystemConfiguration.PPPController")
     149       (global-name "com.apple.SystemConfiguration.PPPController") ;; FIXME (13121943): Is this necessary?
    150150       (global-name "com.apple.SystemConfiguration.SCNetworkReachability")
    151151       (global-name "com.apple.audio.VDCAssistant")
     
    193193       (remote udp))
    194194(allow file-read*
    195         (literal (string-append (param "HOME_DIR") "/Library/Preferences/com.apple.Kerberos.plist"))
    196         (literal (string-append (param "HOME_DIR") "/Library/Preferences/com.apple.GSS.plist"))
    197         (literal (string-append (param "HOME_DIR") "/Library/Preferences/edu.mit.Kerberos"))
     195        (home-subpath "/Library/Preferences/com.apple.Kerberos.plist")
     196        (home-subpath "/Library/Preferences/com.apple.GSS.plist")
     197        (home-subpath "/Library/Preferences/edu.mit.Kerberos")
    198198        (literal "/Library/Preferences/com.apple.Kerberos.plist")
    199199        (literal "/Library/Preferences/com.apple.GSS.plist")
Note: See TracChangeset for help on using the changeset viewer.