Title: [243054] trunk/Source/WebKit
- Revision
- 243054
- Author
- [email protected]
- Date
- 2019-03-17 19:08:14 -0700 (Sun, 17 Mar 2019)
Log Message
[iOS] Block the accessibility server when accessibility is not enabled.
https://bugs.webkit.org/show_bug.cgi?id=195342
<rdar://problem/48615720>
Unreviewed build fix for WinCairo.
* Shared/SandboxExtension.h: Use ProcessID instead of pid_t.
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (243053 => 243054)
--- trunk/Source/WebKit/ChangeLog 2019-03-17 23:45:23 UTC (rev 243053)
+++ trunk/Source/WebKit/ChangeLog 2019-03-18 02:08:14 UTC (rev 243054)
@@ -1,3 +1,13 @@
+2019-03-17 Fujii Hironori <[email protected]>
+
+ [iOS] Block the accessibility server when accessibility is not enabled.
+ https://bugs.webkit.org/show_bug.cgi?id=195342
+ <rdar://problem/48615720>
+
+ Unreviewed build fix for WinCairo.
+
+ * Shared/SandboxExtension.h: Use ProcessID instead of pid_t.
+
2019-03-16 Dean Jackson <[email protected]>
ASSERT(gestureRecognizer == _doubleTapGestureRecognizer) in _doubleTapDidFail:
Modified: trunk/Source/WebKit/Shared/SandboxExtension.h (243053 => 243054)
--- trunk/Source/WebKit/Shared/SandboxExtension.h 2019-03-17 23:45:23 UTC (rev 243053)
+++ trunk/Source/WebKit/Shared/SandboxExtension.h 2019-03-18 02:08:14 UTC (rev 243054)
@@ -27,6 +27,7 @@
#include <wtf/Forward.h>
#include <wtf/Noncopyable.h>
+#include <wtf/ProcessID.h>
#include <wtf/RefCounted.h>
#include <wtf/RefPtr.h>
#include <wtf/Vector.h>
@@ -102,7 +103,7 @@
static bool createHandleForReadWriteDirectory(const String& path, Handle&); // Will attempt to create the directory.
static String createHandleForTemporaryFile(const String& prefix, Type, Handle&);
static bool createHandleForGenericExtension(const String& extensionClass, Handle&);
- static bool createHandleForMachLookupByPid(const String& service, pid_t, Handle&);
+ static bool createHandleForMachLookupByPid(const String& service, ProcessID, Handle&);
~SandboxExtension();
bool consume();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes