Changeset 261811 in webkit


Ignore:
Timestamp:
May 18, 2020 8:00:17 AM (4 years ago)
Author:
Lauro Moura
Message:

webkitpy: Update test data after r261776
https://bugs.webkit.org/show_bug.cgi?id=212008

Reviewed by Alex Christensen.

Covered by existing tests.

  • Scripts/test-legacyMessageReceiver.cpp:
  • Scripts/test-legacyMessages.h:

(Messages::WebPage::DidCreateWebProcessConnection::DidCreateWebProcessConnection):

  • Scripts/webkit/messages_unittest.py:
  • Scripts/webkit/test-legacy.messages.in:
Location:
trunk/Source/WebKit
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r261806 r261811  
     12020-05-18  Lauro Moura  <lmoura@igalia.com>
     2
     3        webkitpy: Update test data after r261776
     4        https://bugs.webkit.org/show_bug.cgi?id=212008
     5
     6        Reviewed by Alex Christensen.
     7
     8        Covered by existing tests.
     9
     10        * Scripts/test-legacyMessageReceiver.cpp:
     11        * Scripts/test-legacyMessages.h:
     12        (Messages::WebPage::DidCreateWebProcessConnection::DidCreateWebProcessConnection):
     13        * Scripts/webkit/messages_unittest.py:
     14        * Scripts/webkit/test-legacy.messages.in:
     15
    1162020-05-18  Carlos Garcia Campos  <cgarcia@igalia.com>
    217
  • trunk/Source/WebKit/Scripts/test-legacyMessageReceiver.cpp

    r261254 r261811  
    3535#include "DummyType.h"
    3636#endif
     37#if PLATFORM(MAC)
     38#include "GestureTypes.h"
     39#endif
    3740#include "HandleMessage.h"
    3841#if PLATFORM(MAC)
     
    5356#include <utility>
    5457#include <wtf/HashMap.h>
     58#if PLATFORM(MAC)
     59#include <wtf/OptionSet.h>
     60#endif
    5561#include <wtf/Vector.h>
    5662#include <wtf/text/WTFString.h>
  • trunk/Source/WebKit/Scripts/test-legacyMessages.h

    r261254 r261811  
    2929#include "ArgumentCoders.h"
    3030#include "Connection.h"
     31#if PLATFORM(IOS_FAMILY)
     32#include "GestureTypes.h"
     33#endif
    3134#include "MessageNames.h"
    3235#include "Plugin.h"
     
    3841#include <wtf/Forward.h>
    3942#include <wtf/HashMap.h>
     43#include <wtf/OptionSet.h>
    4044#include <wtf/ThreadSafeRefCounted.h>
    4145#include <wtf/Vector.h>
     
    453457class DidCreateWebProcessConnection {
    454458public:
    455     typedef std::tuple<const IPC::MachPort&> Arguments;
     459    typedef std::tuple<const IPC::MachPort&, const OptionSet<WebKit::SelectionFlags>&> Arguments;
    456460
    457461    static IPC::MessageName name() { return IPC::MessageName::WebPage_DidCreateWebProcessConnection; }
    458462    static const bool isSync = false;
    459463
    460     explicit DidCreateWebProcessConnection(const IPC::MachPort& connectionIdentifier)
    461         : m_arguments(connectionIdentifier)
     464    DidCreateWebProcessConnection(const IPC::MachPort& connectionIdentifier, const OptionSet<WebKit::SelectionFlags>& flags)
     465        : m_arguments(connectionIdentifier, flags)
    462466    {
    463467    }
  • trunk/Source/WebKit/Scripts/webkit/messages_unittest.py

    r261270 r261811  
    207207            'parameters': (
    208208                ('IPC::MachPort', 'connectionIdentifier'),
     209                ('OptionSet<WebKit::SelectionFlags>', 'flags'),
    209210            ),
    210211            'conditions': ('PLATFORM(MAC)'),
  • trunk/Source/WebKit/Scripts/webkit/test-legacy.messages.in

    r261254 r261811  
    5757
    5858#if PLATFORM(MAC)
    59     DidCreateWebProcessConnection(IPC::MachPort connectionIdentifier)
     59    DidCreateWebProcessConnection(IPC::MachPort connectionIdentifier, OptionSet<WebKit::SelectionFlags> flags)
    6060#endif
    6161
Note: See TracChangeset for help on using the changeset viewer.