Changeset 209920 in webkit


Ignore:
Timestamp:
Dec 16, 2016 8:43:16 AM (7 years ago)
Author:
Claudio Saavedra
Message:

[WK2] SharedMemory: include cleanups
https://bugs.webkit.org/show_bug.cgi?id=165950

Reviewed by Žan Doberšek.

The WTFString include is not needed in the header, so move to the
Unix file. Use the existing UNIX_DOMAIN_SOCKETS define. Also
include the WTFOptional header where needed.

  • Platform/SharedMemory.h:
  • Platform/unix/SharedMemoryUnix.cpp:
Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r209919 r209920  
     12016-12-16  Claudio Saavedra  <csaavedra@igalia.com>
     2
     3        [WK2] SharedMemory: include cleanups
     4        https://bugs.webkit.org/show_bug.cgi?id=165950
     5
     6        Reviewed by Žan Doberšek.
     7
     8        The WTFString include is not needed in the header, so move to the
     9        Unix file. Use the existing UNIX_DOMAIN_SOCKETS define. Also
     10        include the WTFOptional header where needed.
     11
     12        * Platform/SharedMemory.h:
     13        * Platform/unix/SharedMemoryUnix.cpp:
     14
    1152016-12-16  Joonghun Park  <jh718.park@samsung.com>
    216
  • trunk/Source/WebKit2/Platform/SharedMemory.h

    r208990 r209920  
    3131#include <wtf/RefCounted.h>
    3232
    33 #if PLATFORM(GTK) || PLATFORM(EFL)
     33#if USE(UNIX_DOMAIN_SOCKETS)
    3434#include "Attachment.h"
    35 #include <wtf/text/WTFString.h>
     35#include <wtf/Optional.h>
    3636#endif
    3737
  • trunk/Source/WebKit2/Platform/unix/SharedMemoryUnix.cpp

    r208985 r209920  
    4444#include <wtf/UniStdExtras.h>
    4545#include <wtf/text/CString.h>
     46#include <wtf/text/WTFString.h>
    4647
    4748namespace WebKit {
Note: See TracChangeset for help on using the changeset viewer.