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

Side by Side Diff: ipc/ipc_channel_reader.cc

Issue 133313005: Revert of Make flow event traces disabled-by-default, and rename "ipc" and "task" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ipc/ipc_channel_proxy.cc ('k') | ipc/ipc_message.h » ('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_reader.h" 5 #include "ipc/ipc_channel_reader.h"
6 6
7 #include "ipc/ipc_listener.h" 7 #include "ipc/ipc_listener.h"
8 #include "ipc/ipc_logging.h" 8 #include "ipc/ipc_logging.h"
9 #include "ipc/ipc_message_macros.h" 9 #include "ipc/ipc_message_macros.h"
10 10
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 if (message_tail) { 76 if (message_tail) {
77 int len = static_cast<int>(message_tail - p); 77 int len = static_cast<int>(message_tail - p);
78 Message m(p, len); 78 Message m(p, len);
79 if (!WillDispatchInputMessage(&m)) 79 if (!WillDispatchInputMessage(&m))
80 return false; 80 return false;
81 81
82 #ifdef IPC_MESSAGE_LOG_ENABLED 82 #ifdef IPC_MESSAGE_LOG_ENABLED
83 Logging* logger = Logging::GetInstance(); 83 Logging* logger = Logging::GetInstance();
84 std::string name; 84 std::string name;
85 logger->GetMessageText(m.type(), &name, &m, NULL); 85 logger->GetMessageText(m.type(), &name, &m, NULL);
86 TRACE_EVENT1("toplevel", "ChannelReader::DispatchInputData", 86 TRACE_EVENT1("ipc", "ChannelReader::DispatchInputData", "name", name);
87 "name", name);
88 #else 87 #else
89 TRACE_EVENT2("toplevel", "ChannelReader::DispatchInputData", 88 TRACE_EVENT2("ipc", "ChannelReader::DispatchInputData",
90 "class", IPC_MESSAGE_ID_CLASS(m.type()), 89 "class", IPC_MESSAGE_ID_CLASS(m.type()),
91 "line", IPC_MESSAGE_ID_LINE(m.type())); 90 "line", IPC_MESSAGE_ID_LINE(m.type()));
92 #endif 91 #endif
93 m.TraceMessageEnd(); 92 m.TraceMessageEnd();
94 if (IsInternalMessage(m)) 93 if (IsInternalMessage(m))
95 HandleInternalMessage(m); 94 HandleInternalMessage(m);
96 else 95 else
97 listener_->OnMessageReceived(m); 96 listener_->OnMessageReceived(m);
98 p = message_tail; 97 p = message_tail;
99 } else { 98 } else {
100 // Last message is partial. 99 // Last message is partial.
101 break; 100 break;
102 } 101 }
103 } 102 }
104 103
105 // Save any partial data in the overflow buffer. 104 // Save any partial data in the overflow buffer.
106 input_overflow_buf_.assign(p, end - p); 105 input_overflow_buf_.assign(p, end - p);
107 106
108 if (input_overflow_buf_.empty() && !DidEmptyInputBuffers()) 107 if (input_overflow_buf_.empty() && !DidEmptyInputBuffers())
109 return false; 108 return false;
110 return true; 109 return true;
111 } 110 }
112 111
113 112
114 } // namespace internal 113 } // namespace internal
115 } // namespace IPC 114 } // namespace IPC
OLDNEW
« no previous file with comments | « ipc/ipc_channel_proxy.cc ('k') | ipc/ipc_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698