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

Unified Diff: third_party/mojo/src/mojo/edk/system/proxy_message_pipe_endpoint.cc

Issue 910883002: Update mojo sdk to rev 8af2ccff2eee4bfca1043015abee30482a030b30 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Apply 9f87aeadbda22441b7d469e596f7bd7d0d73e2a8 (https://codereview.chromium.org/908973002/) Created 5 years, 10 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
Index: third_party/mojo/src/mojo/edk/system/proxy_message_pipe_endpoint.cc
diff --git a/third_party/mojo/src/mojo/edk/system/proxy_message_pipe_endpoint.cc b/third_party/mojo/src/mojo/edk/system/proxy_message_pipe_endpoint.cc
index 5f0f2e95353e88294a22425ef60b51f3be7624d0..ce96f248e4734b7e9da6f240af4c1596df00caa3 100644
--- a/third_party/mojo/src/mojo/edk/system/proxy_message_pipe_endpoint.cc
+++ b/third_party/mojo/src/mojo/edk/system/proxy_message_pipe_endpoint.cc
@@ -46,8 +46,8 @@ bool ProxyMessagePipeEndpoint::OnPeerClose() {
void ProxyMessagePipeEndpoint::EnqueueMessage(
scoped_ptr<MessageInTransit> message) {
DCHECK(channel_endpoint_);
- LOG_IF(WARNING, !channel_endpoint_->EnqueueMessage(message.Pass()))
- << "Failed to write enqueue message to channel";
+ bool ok = channel_endpoint_->EnqueueMessage(message.Pass());
+ LOG_IF(WARNING, !ok) << "Failed to write enqueue message to channel";
}
void ProxyMessagePipeEndpoint::Close() {

Powered by Google App Engine
This is Rietveld 408576698