Changeset 106709 in webkit


Ignore:
Timestamp:
Feb 3, 2012 4:31:26 PM (12 years ago)
Author:
ap@apple.com
Message:

[WK2] Use properly quoted string literals
https://bugs.webkit.org/show_bug.cgi?id=77583

Reviewed by Darin Adler.

Also added some FIXMEs.

  • WebProcess/com.apple.WebProcess.sb:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r106706 r106709  
     12012-02-03  Alexey Proskuryakov  <ap@apple.com>
     2
     3        [WK2] Use properly quoted string literals
     4        https://bugs.webkit.org/show_bug.cgi?id=77583
     5
     6        Reviewed by Darin Adler.
     7
     8        Also added some FIXMEs.
     9
     10        * WebProcess/com.apple.WebProcess.sb:
     11
    1122012-02-03  Brady Eidson  <beidson@apple.com>
    213
  • trunk/Source/WebKit2/WebProcess/com.apple.WebProcess.sb

    r104319 r106709  
    4040       (regex #"^/Library/Managed Preferences/[^/]+/com\.apple\.networkConnect\.plist$")
    4141       (home-literal "/Library/Preferences/.GlobalPreferences.plist")
    42        (home-regex "/Library/Preferences/ByHost/\.GlobalPreferences\.")
    43        (home-regex "/Library/Preferences/ByHost/com\.apple\.networkConnect\.")
     42       (home-regex #"/Library/Preferences/ByHost/\.GlobalPreferences\.")
     43       (home-regex #"/Library/Preferences/ByHost/com\.apple\.networkConnect\.")
    4444       (home-literal "/Library/Preferences/com.apple.ATS.plist")
    4545       (home-literal "/Library/Preferences/com.apple.DownloadAssessment.plist")
     
    5050       (home-literal "/Library/Preferences/com.apple.security.revocation.plist")
    5151       (home-literal "/Library/Application Support/SyncServices/Local/ClientsWithChanges/com.apple.Keychain")
    52        (home-regex "/Library/Preferences/com\.apple\.driver\.(AppleBluetoothMultitouch\.mouse|AppleBluetoothMultitouch\.trackpad|AppleHIDMouse)\.plist$")
     52       (home-regex #"/Library/Preferences/com\.apple\.driver\.(AppleBluetoothMultitouch\.mouse|AppleBluetoothMultitouch\.trackpad|AppleHIDMouse)\.plist$")
    5353
    5454       ;; On-disk WebKit2 framework location, to account for debug installations
     
    8787(allow file*
    8888       (home-subpath "/Library/Caches/com.apple.WebProcess")
    89        (home-regex "/Library/Preferences/ByHost/com\.apple\.HIToolbox\.")
    90        (home-regex "/Library/Preferences/com\.apple\.WebProcess\.")
     89       (home-regex #"/Library/Preferences/ByHost/com\.apple\.HIToolbox\.")
     90       (home-regex #"/Library/Preferences/com\.apple\.WebProcess\.")
    9191
    9292       ;; FIXME: This should be removed when <rdar://problem/10479685> is fixed.
     
    9797    (subpath "/private/var/db/mds/system"))
    9898
    99 ;; Darwin temporary files and Security mds caches, if present
     99;; FIXME: <rdar://problem/10792047> Use private user cache directory
    100100(if (positive? (string-length (param "DARWIN_USER_CACHE_DIR")))
    101101    (allow file* (subpath (string-append (param "DARWIN_USER_CACHE_DIR") "/mds"))))
     102
     103;; FIXME: <rdar://problem/10785457> Use private temporary directory
    102104(if (positive? (string-length (param "DARWIN_USER_TEMP_DIR")))
    103105    (allow file* (subpath (param "DARWIN_USER_TEMP_DIR"))))
Note: See TracChangeset for help on using the changeset viewer.