| Index: ipc/ipc_fuzzing_tests.cc
|
| diff --git a/ipc/ipc_fuzzing_tests.cc b/ipc/ipc_fuzzing_tests.cc
|
| index 82ac37f60325fccae9e46c3b45798a009a28ee96..f5014491f804d06721d648630d1a903ecc765ee0 100644
|
| --- a/ipc/ipc_fuzzing_tests.cc
|
| +++ b/ipc/ipc_fuzzing_tests.cc
|
| @@ -16,7 +16,7 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "testing/multiprocess_func_list.h"
|
|
|
| -// IPC messages for testing ---------------------------------------------------
|
| +// IPC messages for testing ----------------------------------------------------
|
|
|
| #define IPC_MESSAGE_IMPL
|
| #include "ipc/ipc_message_macros.h"
|
| @@ -35,7 +35,9 @@ IPC_MESSAGE_CONTROL2(MsgDoMutex, std::wstring, int)
|
| // Used to generate an ID for a message that should not exist.
|
| IPC_MESSAGE_CONTROL0(MsgUnhandled)
|
|
|
| -// ----------------------------------------------------------------------------
|
| +// -----------------------------------------------------------------------------
|
| +
|
| +namespace {
|
|
|
| TEST(IPCMessageIntegrity, ReadBeyondBufferStr) {
|
| //This was BUG 984408.
|
| @@ -418,3 +420,5 @@ TEST_F(IPCFuzzingTest, MsgMapExMacro) {
|
| EXPECT_EQ(0, server.unhandled_msgs());
|
| #endif
|
| }
|
| +
|
| +} // namespace
|
|
|