Cleanup GPU lifetime event histograms.
[chromium-blink-merge.git] / ipc / ipc_multiprocess_test.h
blobda920c1ced108a1b3b33f98f4ec70f9f8af01e1f
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef IPC_IPC_MULTIPROCESS_TEST_H_
6 #define IPC_IPC_MULTIPROCESS_TEST_H_
8 #include "base/test/multiprocess_test.h"
10 // Use this macro when your sub-process is using an IPCChannel to communicate
11 // with the test process.
12 // See comment below for MultiProcessTestIPCSetUp() on why this is needed.
13 #define MULTIPROCESS_IPC_TEST_MAIN(test_main) \
14 MULTIPROCESS_TEST_MAIN_WITH_SETUP(test_main, MultiProcessTestIPCSetUp)
16 // Setup function used by MULTIPROCESS_IPC_TEST_MAIN.
17 // Registers the IPC channel as a global descriptor in the child process. This
18 // is needed on POSIX as the IPCChannel when created looks for a specific global
19 // descriptor to establish the connection to the parent process.
20 void MultiProcessTestIPCSetUp();
22 #endif // IPC_IPC_MULTIPROCESS_TEST_H_