⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 268883 in webkit


Ignore:
Timestamp:
Oct 22, 2020, 12:16:18 PM (6 years ago)
Author:
rniwa@webkit.org
Message:

IPC testing API should have the capability to observe messages being sent and received
https://bugs.webkit.org/show_bug.cgi?id=217870

Unreviewed ASAN release build fix.

  • Platform/IPC/JSIPCBinding.cpp:
  • WebProcess/WebPage/IPCTestingAPI.cpp:

(WebKit::IPCTestingAPI::JSMessageListener::JSMessageListener):

Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r268878 r268883  
     12020-10-22  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        IPC testing API should have the capability to observe messages being sent and received
     4        https://bugs.webkit.org/show_bug.cgi?id=217870
     5
     6        Unreviewed ASAN release build fix.
     7
     8        * Platform/IPC/JSIPCBinding.cpp:
     9        * WebProcess/WebPage/IPCTestingAPI.cpp:
     10        (WebKit::IPCTestingAPI::JSMessageListener::JSMessageListener):
     11
    1122020-10-22  Eric Carlson  <eric.carlson@apple.com>
    213
  • trunk/Source/WebKit/Platform/IPC/JSIPCBinding.cpp

    r268854 r268883  
    3030
    3131#include <JavaScriptCore/JSCJSValueInlines.h>
     32#include <JavaScriptCore/JSGlobalObjectInlines.h>
     33#include <JavaScriptCore/ObjectConstructor.h>
    3234#include <WebCore/FloatRect.h>
    3335#include <WebCore/IntRect.h>
  • trunk/Source/WebKit/WebProcess/WebPage/IPCTestingAPI.cpp

    r268848 r268883  
    895895    JSC::PrivateName uniquePrivateName;
    896896    globalObject->putDirect(vm, uniquePrivateName, toJS(globalObject, callback));
     897
     898    UNUSED_PARAM(catchScope);
    897899}
    898900
Note: See TracChangeset for help on using the changeset viewer.