summaryrefslogtreecommitdiffstats
path: root/Source/WebKit2/Platform/SharedMemory.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit2/Platform/SharedMemory.h')
-rw-r--r--Source/WebKit2/Platform/SharedMemory.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/WebKit2/Platform/SharedMemory.h b/Source/WebKit2/Platform/SharedMemory.h
index fd1d60c..a4b95bf 100644
--- a/Source/WebKit2/Platform/SharedMemory.h
+++ b/Source/WebKit2/Platform/SharedMemory.h
@@ -95,7 +95,9 @@ public:
private:
size_t m_size;
void* m_data;
-#if PLATFORM(WIN)
+#if PLATFORM(MAC)
+ mach_port_t m_port;
+#elif PLATFORM(WIN)
HANDLE m_handle;
#elif PLATFORM(QT)
int m_fileDescriptor;