Skip to content

Commit

Permalink
REGRESSION(256008@main) TestWebKitAPI.IPCTestingAPI.CanIntercept* tes…
Browse files Browse the repository at this point in the history
…ts fail

https://bugs.webkit.org/show_bug.cgi?id=247256

rdar://problem/101749810

Reviewed by Ryosuke Niwa.

The commit 256008@main changed the encoding for messages that have async
replies:
 - Before, the reply id was encoded as the first parameter.
 - After, the reply id was encoded as the last parameter.

This broke the JS IPC tester API where message listener code was not
adjusted accordingly. This caused the arguments to be decoded incorrectly.

Fix the JS IPC tester API.

Add a test testing that listener API can be used to obtain the async reply
id.

* LayoutTests/ipc/message-listener-async-message-reply-id-expected.txt: Added.
* LayoutTests/ipc/message-listener-async-message-reply-id.html: Added.
 Source/WebKit/CMakeLists.txt:
* Source/WebKit/DerivedSources-input.xcfilelist:
* Source/WebKit/DerivedSources-output.xcfilelist:
* Source/WebKit/DerivedSources.make:
* Source/WebKit/Shared/IPCTester.cpp:
(WebKit::IPCTester::sendAsyncMessageToProxy):
* Source/WebKit/Shared/IPCTester.h:
* Source/WebKit/Shared/IPCTester.messages.in:
* Source/WebKit/Shared/IPCTesterReceiver.cpp: Copied from Source/WebKit/WebProcess/GPU/graphics/ThreadSafeRemoteImageBufferFlusher.cpp.
(WebKit::IPCTesterReceiver::asyncMessage):
* Source/WebKit/Shared/IPCTesterReceiver.h: Copied from Source/WebKit/WebProcess/GPU/graphics/ThreadSafeRemoteImageBufferFlusher.cpp.
* Source/WebKit/Shared/IPCTesterReceiver.messages.in: Copied from Source/WebKit/Shared/IPCTester.messages.in.
* Source/WebKit/Sources.txt:
* Source/WebKit/WebKit.xcodeproj/project.pbxproj:
* Source/WebKit/WebProcess/WebPage/IPCTestingAPI.cpp:
(WebKit::IPCTestingAPI::JSIPC::staticFunctions):
(WebKit::IPCTestingAPI::JSIPC::addTesterReceiver):
(WebKit::IPCTestingAPI::JSIPC::removeTesterReceiver):
(WebKit::IPCTestingAPI::JSMessageListener::jsDescriptionFromDecoder):

Canonical link: https://commits.webkit.org/256420@main
  • Loading branch information
kkinnunen-apple committed Nov 7, 2022
1 parent cf442de commit 7e3be0d
Show file tree
Hide file tree
Showing 15 changed files with 241 additions and 12 deletions.
@@ -0,0 +1,3 @@

PASS Intercepting async messages contains all the expected data.

37 changes: 37 additions & 0 deletions LayoutTests/ipc/message-listener-async-message-reply-id.html
@@ -0,0 +1,37 @@

<!doctype html><!-- webkit-test-runner [ IPCTestingAPIEnabled=true ] -->
<title>Test that intercepting an async message has access to the listener id.</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<body>
<script>

promise_test(async t => {
if (!window.IPC)
return;
const testerID = 447;
const processTarget = 'UI'; // Currently only UI is supported for addTesterReceiver.
IPC.addTesterReceiver(processTarget);
try {
let messages = [];
IPC.addIncomingMessageListener(processTarget, (message) => {
if (message.name != IPC.messages.IPCTesterReceiver_AsyncMessage.name)
return;
messages.push(message);
});
IPC.sendMessage(processTarget, 0, IPC.messages.IPCTester_SendAsyncMessageToReceiver.name, [
{ type: 'uint32_t', value: 89 },
]);
await t.step_wait(() => { return messages.length > 0 }, "Waiting until async message is intercepted");
assert_equals(messages.length, 1, `for ${ processTarget }`);
assert_equals(messages[0].arguments.length, 1, `for ${ processTarget }`)
assert_equals(messages[0].arguments[0].type, "uint32_t", `for ${ processTarget }`);
assert_equals(messages[0].arguments[0].value, 90, `for ${ processTarget }`);
assert_equals(typeof messages[0].listenerID, "number", `for ${ processTarget }`);
assert_greater_than(messages[0].listenerID, 0, `for ${ processTarget }`);
} finally {
IPC.removeTesterReceiver(processTarget);
}
}, "Intercepting async messages contains all the expected data.");
</script>
</body>
1 change: 1 addition & 0 deletions Source/WebKit/CMakeLists.txt
Expand Up @@ -220,6 +220,7 @@ set(WebKit_MESSAGES_IN_FILES
Shared/IPCStreamTester
Shared/IPCStreamTesterProxy
Shared/IPCTester
Shared/IPCTesterReceiver
Shared/WebConnection

Shared/Authentication/AuthenticationManager
Expand Down
9 changes: 5 additions & 4 deletions Source/WebKit/DerivedSources-input.xcfilelist
Expand Up @@ -32,10 +32,12 @@ $(JAVASCRIPTCORE_PRIVATE_HEADERS_DIR)/xxd.pl
$(PROJECT_DIR)/DerivedSources.make
$(PROJECT_DIR)/GPUProcess/GPUConnectionToWebProcess.messages.in
$(PROJECT_DIR)/GPUProcess/GPUProcess.messages.in
$(PROJECT_DIR)/GPUProcess/GPUProcessSessionParameters.serialization.in
$(PROJECT_DIR)/GPUProcess/graphics/RemoteDisplayListRecorder.messages.in
$(PROJECT_DIR)/GPUProcess/graphics/RemoteGraphicsContext.messages.in
$(PROJECT_DIR)/GPUProcess/graphics/RemoteGraphicsContextGL.messages.in
$(PROJECT_DIR)/GPUProcess/graphics/RemoteRenderingBackend.messages.in
$(PROJECT_DIR)/GPUProcess/graphics/RemoteRenderingBackendCreationParameters.serialization.in
$(PROJECT_DIR)/GPUProcess/graphics/WebGPU/RemoteAdapter.messages.in
$(PROJECT_DIR)/GPUProcess/graphics/WebGPU/RemoteBindGroup.messages.in
$(PROJECT_DIR)/GPUProcess/graphics/WebGPU/RemoteBindGroupLayout.messages.in
Expand All @@ -58,12 +60,9 @@ $(PROJECT_DIR)/GPUProcess/graphics/WebGPU/RemoteSampler.messages.in
$(PROJECT_DIR)/GPUProcess/graphics/WebGPU/RemoteShaderModule.messages.in
$(PROJECT_DIR)/GPUProcess/graphics/WebGPU/RemoteTexture.messages.in
$(PROJECT_DIR)/GPUProcess/graphics/WebGPU/RemoteTextureView.messages.in
$(PROJECT_DIR)/GPUProcess/GPUProcessSessionParameters.serialization.in
$(PROJECT_DIR)/GPUProcess/graphics/RemoteRenderingBackendCreationParameters.serialization.in
$(PROJECT_DIR)/GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in
$(PROJECT_DIR)/GPUProcess/media/InitializationSegmentInfo.serialization.in
$(PROJECT_DIR)/GPUProcess/media/MediaDescriptionInfo.serialization.in
$(PROJECT_DIR)/GPUProcess/media/TextTrackPrivateRemoteConfiguration.serialization.in
$(PROJECT_DIR)/GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in
$(PROJECT_DIR)/GPUProcess/media/RemoteAudioDestinationManager.messages.in
$(PROJECT_DIR)/GPUProcess/media/RemoteAudioSessionProxy.messages.in
$(PROJECT_DIR)/GPUProcess/media/RemoteAudioSessionProxyManager.messages.in
Expand All @@ -86,6 +85,7 @@ $(PROJECT_DIR)/GPUProcess/media/RemoteSourceBufferProxy.messages.in
$(PROJECT_DIR)/GPUProcess/media/RemoteTextTrackProxy.messages.in
$(PROJECT_DIR)/GPUProcess/media/RemoteVideoFrameObjectHeap.messages.in
$(PROJECT_DIR)/GPUProcess/media/RemoteVideoTrackProxy.messages.in
$(PROJECT_DIR)/GPUProcess/media/TextTrackPrivateRemoteConfiguration.serialization.in
$(PROJECT_DIR)/GPUProcess/media/ios/RemoteMediaSessionHelperProxy.messages.in
$(PROJECT_DIR)/GPUProcess/webrtc/LibWebRTCCodecsProxy.messages.in
$(PROJECT_DIR)/GPUProcess/webrtc/RemoteAudioMediaStreamTrackRenderer.messages.in
Expand Down Expand Up @@ -157,6 +157,7 @@ $(PROJECT_DIR)/Shared/IPCConnectionTester.messages.in
$(PROJECT_DIR)/Shared/IPCStreamTester.messages.in
$(PROJECT_DIR)/Shared/IPCStreamTesterProxy.messages.in
$(PROJECT_DIR)/Shared/IPCTester.messages.in
$(PROJECT_DIR)/Shared/IPCTesterReceiver.messages.in
$(PROJECT_DIR)/Shared/LayerTreeContext.serialization.in
$(PROJECT_DIR)/Shared/Notifications/NotificationManagerMessageHandler.messages.in
$(PROJECT_DIR)/Shared/Notifications/NotificationManagerProxy.messages.in
Expand Down
9 changes: 6 additions & 3 deletions Source/WebKit/DerivedSources-output.xcfilelist
Expand Up @@ -61,12 +61,15 @@ $(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/IPCStreamTesterProxyMessagesReplies.
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/IPCTesterMessageReceiver.cpp
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/IPCTesterMessages.h
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/IPCTesterMessagesReplies.h
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/JSWebExtensionAPIExtension.mm
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/IPCTesterReceiverMessageReceiver.cpp
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/IPCTesterReceiverMessages.h
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/IPCTesterReceiverMessagesReplies.h
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/JSWebExtensionAPIExtension.h
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/JSWebExtensionAPINamespace.mm
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/JSWebExtensionAPIExtension.mm
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/JSWebExtensionAPINamespace.h
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/JSWebExtensionAPIRuntime.mm
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/JSWebExtensionAPINamespace.mm
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/JSWebExtensionAPIRuntime.h
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/JSWebExtensionAPIRuntime.mm
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/LegacyCustomProtocolManagerMessageReceiver.cpp
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/LegacyCustomProtocolManagerMessages.h
$(BUILT_PRODUCTS_DIR)/DerivedSources/WebKit/LegacyCustomProtocolManagerMessagesReplies.h
Expand Down
1 change: 1 addition & 0 deletions Source/WebKit/DerivedSources.make
Expand Up @@ -152,6 +152,7 @@ MESSAGE_RECEIVERS = \
Shared/IPCStreamTester \
Shared/IPCStreamTesterProxy \
Shared/IPCTester \
Shared/IPCTesterReceiver \
UIProcess/WebFullScreenManagerProxy \
UIProcess/RemoteLayerTree/RemoteLayerTreeDrawingAreaProxy \
UIProcess/GPU/GPUProcessProxy \
Expand Down
8 changes: 8 additions & 0 deletions Source/WebKit/Shared/IPCTester.cpp
Expand Up @@ -32,6 +32,7 @@
#include "IPCConnectionTester.h"
#include "IPCStreamTester.h"
#include "IPCTesterMessages.h"
#include "IPCTesterReceiverMessages.h"
#include "IPCUtilities.h"

#include <atomic>
Expand Down Expand Up @@ -169,6 +170,13 @@ void IPCTester::sendSemaphoreBackAndSignalProtocol(IPC::Connection& connection,
}
}

void IPCTester::sendAsyncMessageToReceiver(IPC::Connection& connection, uint32_t arg0)
{
connection.sendWithAsyncReply(Messages::IPCTesterReceiver::AsyncMessage(arg0 + 1), [arg0](uint32_t newArg0) {
ASSERT(newArg0 == arg0 + 2);
}, 0);
}

void IPCTester::createConnectionTester(IPC::Connection& connection, IPCConnectionTesterIdentifier identifier, IPC::Connection::Handle&& testedConnectionIdentifier)
{
auto addResult = m_connectionTesters.ensure(identifier, [&] {
Expand Down
1 change: 1 addition & 0 deletions Source/WebKit/Shared/IPCTester.h
Expand Up @@ -70,6 +70,7 @@ class IPCTester final : public IPC::MessageReceiver {
void releaseConnectionTester(IPCConnectionTesterIdentifier, CompletionHandler<void()>&&);
void sendSameSemaphoreBack(IPC::Connection&, IPC::Semaphore&&);
void sendSemaphoreBackAndSignalProtocol(IPC::Connection&, IPC::Semaphore&&);
void sendAsyncMessageToReceiver(IPC::Connection&, uint32_t);

void stopIfNeeded();

Expand Down
2 changes: 2 additions & 0 deletions Source/WebKit/Shared/IPCTester.messages.in
Expand Up @@ -33,6 +33,8 @@ messages -> IPCTester NotRefCounted {

SendSameSemaphoreBack(IPC::Semaphore semaphore) WantsConnection
SendSemaphoreBackAndSignalProtocol(IPC::Semaphore semaphore) WantsConnection

SendAsyncMessageToReceiver(uint32_t arg0) WantsConnection
}

#endif
40 changes: 40 additions & 0 deletions Source/WebKit/Shared/IPCTesterReceiver.cpp
@@ -0,0 +1,40 @@
/*
* Copyright (C) 2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "config.h"
#include "IPCTesterReceiver.h"

#if ENABLE(IPC_TESTING_API)

namespace WebKit {

void IPCTesterReceiver::asyncMessage(uint32_t arg0, CompletionHandler<void(uint32_t)>&& completionHandler)
{
completionHandler(arg0 + 1u);
}

}

#endif
53 changes: 53 additions & 0 deletions Source/WebKit/Shared/IPCTesterReceiver.h
@@ -0,0 +1,53 @@
/*
* Copyright (C) 2022 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/

#pragma once

#if ENABLE(IPC_TESTING_API)

#include "MessageReceiver.h"

namespace IPC {
class Connection;
}

namespace WebKit {

// Proxy interface to test IPC activities related to receiving messages.
class IPCTesterReceiver final : public IPC::MessageReceiver {
public:
IPCTesterReceiver() = default;
~IPCTesterReceiver() = default;

// IPC::MessageReceiver
void didReceiveMessage(IPC::Connection&, IPC::Decoder&) final;
private:
// Messages
void asyncMessage(uint32_t, CompletionHandler<void(uint32_t)>&&);
};

}

#endif
29 changes: 29 additions & 0 deletions Source/WebKit/Shared/IPCTesterReceiver.messages.in
@@ -0,0 +1,29 @@
# Copyright (C) 2022 Apple Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#if ENABLE(IPC_TESTING_API)

messages -> IPCTesterReceiver NotRefCounted {
void AsyncMessage(uint32_t arg1) -> (uint32_t reply) Asynchronous
}

#endif
2 changes: 2 additions & 0 deletions Source/WebKit/Sources.txt
Expand Up @@ -201,6 +201,7 @@ Shared/InspectorExtensionTypes.cpp
Shared/IPCConnectionTester.cpp
Shared/IPCStreamTester.cpp
Shared/IPCTester.cpp
Shared/IPCTesterReceiver.cpp
Shared/LayerTreeContext.cpp
Shared/LoadParameters.cpp
Shared/NavigationActionData.cpp
Expand Down Expand Up @@ -846,6 +847,7 @@ IPCConnectionTesterMessageReceiver.cpp
IPCStreamTesterMessageReceiver.cpp
IPCStreamTesterProxyMessageReceiver.cpp
IPCTesterMessageReceiver.cpp
IPCTesterReceiverMessageReceiver.cpp
NetworkBroadcastChannelRegistryMessageReceiver.cpp
RTCDataChannelRemoteManagerMessageReceiver.cpp
RTCDataChannelRemoteManagerProxyMessageReceiver.cpp
Expand Down
4 changes: 4 additions & 0 deletions Source/WebKit/WebKit.xcodeproj/project.pbxproj
Expand Up @@ -5881,6 +5881,8 @@
7BE726572574F67200E85D98 /* RemoteGraphicsContextGLProxyFunctionsGenerated.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = RemoteGraphicsContextGLProxyFunctionsGenerated.cpp; sourceTree = "<group>"; };
7BE72668257680EF00E85D98 /* RemoteGraphicsContextGLCocoa.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = RemoteGraphicsContextGLCocoa.cpp; sourceTree = "<group>"; };
7BE9326227F5C75A00D5FEFB /* ReceiverMatcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ReceiverMatcher.h; sourceTree = "<group>"; };
7BF19B5F290FC5B400EF322A /* IPCTesterReceiver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IPCTesterReceiver.h; sourceTree = "<group>"; };
7BF19B60290FC5B400EF322A /* IPCTesterReceiver.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = IPCTesterReceiver.cpp; sourceTree = "<group>"; };
7BFCCD2528B4D180009FC707 /* XPCConnectionTerminationWatchdog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XPCConnectionTerminationWatchdog.h; sourceTree = "<group>"; };
7BFCCD2628B4D180009FC707 /* XPCConnectionTerminationWatchdog.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = XPCConnectionTerminationWatchdog.mm; sourceTree = "<group>"; };
7C065F291C8CD95F00C2D950 /* WebUserContentControllerDataTypes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebUserContentControllerDataTypes.cpp; sourceTree = "<group>"; };
Expand Down Expand Up @@ -8315,6 +8317,8 @@
7B2DDD5E27CCD9710060ABAB /* IPCStreamTesterProxy.h */,
7B50E97F2771F6CE003DAAC4 /* IPCTester.cpp */,
7B50E9802771F6CF003DAAC4 /* IPCTester.h */,
7BF19B60290FC5B400EF322A /* IPCTesterReceiver.cpp */,
7BF19B5F290FC5B400EF322A /* IPCTesterReceiver.h */,
1A92DC1212F8BAB90017AF65 /* LayerTreeContext.cpp */,
1A92DC1012F8BA460017AF65 /* LayerTreeContext.h */,
F476894628D2B5CD00073641 /* LayerTreeContext.serialization.in */,
Expand Down

0 comments on commit 7e3be0d

Please sign in to comment.