| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ipc/ipc_channel_posix.h" | 5 #include "ipc/ipc_channel_posix.h" |
| 6 | 6 |
| 7 #include <errno.h> | 7 #include <errno.h> |
| 8 #include <fcntl.h> | 8 #include <fcntl.h> |
| 9 #include <stddef.h> | 9 #include <stddef.h> |
| 10 #include <sys/socket.h> | 10 #include <sys/socket.h> |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 DVLOG(2) << "sent message @" << msg << " on channel @" << this | 520 DVLOG(2) << "sent message @" << msg << " on channel @" << this |
| 521 << " with type " << msg->type() << " on fd " << pipe_; | 521 << " with type " << msg->type() << " on fd " << pipe_; |
| 522 delete output_queue_.front(); | 522 delete output_queue_.front(); |
| 523 output_queue_.pop(); | 523 output_queue_.pop(); |
| 524 } | 524 } |
| 525 } | 525 } |
| 526 return true; | 526 return true; |
| 527 } | 527 } |
| 528 | 528 |
| 529 bool Channel::ChannelImpl::Send(Message* message) { | 529 bool Channel::ChannelImpl::Send(Message* message) { |
| 530 CHECK(message) << "crbug.com/357915"; // TODO(vtl): Remove once bug resolved. |
| 530 DVLOG(2) << "sending message @" << message << " on channel @" << this | 531 DVLOG(2) << "sending message @" << message << " on channel @" << this |
| 531 << " with type " << message->type() | 532 << " with type " << message->type() |
| 532 << " (" << output_queue_.size() << " in queue)"; | 533 << " (" << output_queue_.size() << " in queue)"; |
| 533 | 534 |
| 534 #ifdef IPC_MESSAGE_LOG_ENABLED | 535 #ifdef IPC_MESSAGE_LOG_ENABLED |
| 535 Logging::GetInstance()->OnSendMessage(message, ""); | 536 Logging::GetInstance()->OnSendMessage(message, ""); |
| 536 #endif // IPC_MESSAGE_LOG_ENABLED | 537 #endif // IPC_MESSAGE_LOG_ENABLED |
| 537 | 538 |
| 538 message->TraceMessageBegin(); | 539 message->TraceMessageBegin(); |
| 539 output_queue_.push(message); | 540 output_queue_.push(message); |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1117 | 1118 |
| 1118 | 1119 |
| 1119 #if defined(OS_LINUX) | 1120 #if defined(OS_LINUX) |
| 1120 // static | 1121 // static |
| 1121 void Channel::SetGlobalPid(int pid) { | 1122 void Channel::SetGlobalPid(int pid) { |
| 1122 ChannelImpl::SetGlobalPid(pid); | 1123 ChannelImpl::SetGlobalPid(pid); |
| 1123 } | 1124 } |
| 1124 #endif // OS_LINUX | 1125 #endif // OS_LINUX |
| 1125 | 1126 |
| 1126 } // namespace IPC | 1127 } // namespace IPC |
| OLD | NEW |