Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(448)

Unified Diff: ipc/ipc_fuzzing_tests.cc

Issue 11419224: Add missing (and remove superfluous) 'explicit' from constructors. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + remove non-straightforward changes Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ipc/ipc_channel_proxy.h ('k') | ipc/ipc_send_fds_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_fuzzing_tests.cc
diff --git a/ipc/ipc_fuzzing_tests.cc b/ipc/ipc_fuzzing_tests.cc
index 4c3e9c9673f072c584ff1738c0a417cea3022157..86ded0f9f1328d6fc893c7ff78cf907edf5f4c8f 100644
--- a/ipc/ipc_fuzzing_tests.cc
+++ b/ipc/ipc_fuzzing_tests.cc
@@ -264,8 +264,7 @@ class IPCFuzzingTest : public IPCChannelTest {
// are working properly by generating two well formed IPC calls.
TEST_F(IPCFuzzingTest, SanityTest) {
FuzzerClientListener listener;
- IPC::Channel chan(kFuzzerChannel, IPC::Channel::MODE_SERVER,
- &listener);
+ IPC::Channel chan(kFuzzerChannel, IPC::Channel::MODE_SERVER, &listener);
base::ProcessHandle server_process = SpawnChild(FUZZER_SERVER, &chan);
ASSERT_TRUE(server_process);
base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1));
@@ -295,8 +294,7 @@ TEST_F(IPCFuzzingTest, SanityTest) {
#if defined(NDEBUG) && !defined(DCHECK_ALWAYS_ON)
TEST_F(IPCFuzzingTest, MsgBadPayloadShort) {
FuzzerClientListener listener;
- IPC::Channel chan(kFuzzerChannel, IPC::Channel::MODE_SERVER,
- &listener);
+ IPC::Channel chan(kFuzzerChannel, IPC::Channel::MODE_SERVER, &listener);
base::ProcessHandle server_process = SpawnChild(FUZZER_SERVER, &chan);
ASSERT_TRUE(server_process);
base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1));
@@ -326,8 +324,7 @@ TEST_F(IPCFuzzingTest, MsgBadPayloadShort) {
// type information on the IPC message.
TEST_F(IPCFuzzingTest, MsgBadPayloadArgs) {
FuzzerClientListener listener;
- IPC::Channel chan(kFuzzerChannel, IPC::Channel::MODE_SERVER,
- &listener);
+ IPC::Channel chan(kFuzzerChannel, IPC::Channel::MODE_SERVER, &listener);
base::ProcessHandle server_process = SpawnChild(FUZZER_SERVER, &chan);
ASSERT_TRUE(server_process);
base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1));
« no previous file with comments | « ipc/ipc_channel_proxy.h ('k') | ipc/ipc_send_fds_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698