| Index: components/nacl/loader/nacl_ipc_adapter_unittest.cc
|
| diff --git a/components/nacl/loader/nacl_ipc_adapter_unittest.cc b/components/nacl/loader/nacl_ipc_adapter_unittest.cc
|
| index 80fd4080d4960e9eb3e5bb1e6a39deb35cbf8f55..21e5f7fc987d61926a91f7293c7ba44c9b2417d1 100644
|
| --- a/components/nacl/loader/nacl_ipc_adapter_unittest.cc
|
| +++ b/components/nacl/loader/nacl_ipc_adapter_unittest.cc
|
| @@ -75,7 +75,7 @@ class NaClIPCAdapterTest : public testing::Test {
|
| TEST_F(NaClIPCAdapterTest, SimpleReceiveRewriting) {
|
| int routing_id = 0x89898989;
|
| uint32 type = 0x55555555;
|
| - IPC::Message input(routing_id, type, IPC::Message::PRIORITY_NORMAL);
|
| + IPC::Message input(routing_id, type);
|
| uint32 flags = input.flags();
|
|
|
| int value = 0x12345678;
|
| @@ -175,14 +175,14 @@ TEST_F(NaClIPCAdapterTest, SendRewriting) {
|
| TEST_F(NaClIPCAdapterTest, PartialReceive) {
|
| int routing_id_1 = 0x89898989;
|
| uint32 type_1 = 0x55555555;
|
| - IPC::Message input_1(routing_id_1, type_1, IPC::Message::PRIORITY_NORMAL);
|
| + IPC::Message input_1(routing_id_1, type_1);
|
| int value_1 = 0x12121212;
|
| input_1.WriteInt(value_1);
|
| adapter_->OnMessageReceived(input_1);
|
|
|
| int routing_id_2 = 0x90909090;
|
| uint32 type_2 = 0x66666666;
|
| - IPC::Message input_2(routing_id_2, type_2, IPC::Message::PRIORITY_NORMAL);
|
| + IPC::Message input_2(routing_id_2, type_2);
|
| int value_2 = 0x23232323;
|
| input_2.WriteInt(value_2);
|
| adapter_->OnMessageReceived(input_2);
|
|
|