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

Side by Side Diff: trunk/src/ipc/ipc_channel_posix.cc

Issue 217323004: Revert 260373 "Add a temporary CHECK to IPC::Channel::Send() to ..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | trunk/src/ipc/ipc_channel_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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.
531 DVLOG(2) << "sending message @" << message << " on channel @" << this 530 DVLOG(2) << "sending message @" << message << " on channel @" << this
532 << " with type " << message->type() 531 << " with type " << message->type()
533 << " (" << output_queue_.size() << " in queue)"; 532 << " (" << output_queue_.size() << " in queue)";
534 533
535 #ifdef IPC_MESSAGE_LOG_ENABLED 534 #ifdef IPC_MESSAGE_LOG_ENABLED
536 Logging::GetInstance()->OnSendMessage(message, ""); 535 Logging::GetInstance()->OnSendMessage(message, "");
537 #endif // IPC_MESSAGE_LOG_ENABLED 536 #endif // IPC_MESSAGE_LOG_ENABLED
538 537
539 message->TraceMessageBegin(); 538 message->TraceMessageBegin();
540 output_queue_.push(message); 539 output_queue_.push(message);
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 1117
1119 1118
1120 #if defined(OS_LINUX) 1119 #if defined(OS_LINUX)
1121 // static 1120 // static
1122 void Channel::SetGlobalPid(int pid) { 1121 void Channel::SetGlobalPid(int pid) {
1123 ChannelImpl::SetGlobalPid(pid); 1122 ChannelImpl::SetGlobalPid(pid);
1124 } 1123 }
1125 #endif // OS_LINUX 1124 #endif // OS_LINUX
1126 1125
1127 } // namespace IPC 1126 } // namespace IPC
OLDNEW
« no previous file with comments | « no previous file | trunk/src/ipc/ipc_channel_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698