Clean up the sandbox parameter code
Created attachment 87653 [details] Patch
Comment on attachment 87653 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=87653&action=review > Source/WebKit2/WebProcess/mac/WebProcessMac.mm:153 > +static void appendReadonlySandboxDirectory(Vector<const char*>& vector, const char* name, const String& path) > +{ > + appendSandboxParameterPathInternal(vector, name, [(NSString *)path fileSystemRepresentation]); > +} > + > +static void appendReadwriteSandboxDirectory(Vector<const char*>& vector, const char* name, const String& path) > +{ > + appendSandboxParameterPathInternal(vector, name, [(NSString *)path fileSystemRepresentation]); > +} These should take NSStrings.
Committed r82530: <http://trac.webkit.org/changeset/82530>