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

Side by Side Diff: ipc/ipc_logging.cc

Issue 10541065: Separate out IPC::Message::Sender and channel::Listener into a separate class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: de-inline Created 8 years, 6 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_logging.h ('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_logging.h" 5 #include "ipc/ipc_logging.h"
6 6
7 #ifdef IPC_MESSAGE_LOG_ENABLED 7 #ifdef IPC_MESSAGE_LOG_ENABLED
8 #define IPC_MESSAGE_MACROS_LOG_ENABLED 8 #define IPC_MESSAGE_MACROS_LOG_ENABLED
9 #endif 9 #endif
10 10
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 if (!sender_) 96 if (!sender_)
97 return; 97 return;
98 98
99 Message* msg = new Message( 99 Message* msg = new Message(
100 MSG_ROUTING_CONTROL, IPC_LOGGING_ID, Message::PRIORITY_NORMAL); 100 MSG_ROUTING_CONTROL, IPC_LOGGING_ID, Message::PRIORITY_NORMAL);
101 WriteParam(msg, queued_logs_); 101 WriteParam(msg, queued_logs_);
102 queued_logs_.clear(); 102 queued_logs_.clear();
103 sender_->Send(msg); 103 sender_->Send(msg);
104 } 104 }
105 105
106 void Logging::SetIPCSender(IPC::Message::Sender* sender) { 106 void Logging::SetIPCSender(IPC::Sender* sender) {
107 sender_ = sender; 107 sender_ = sender;
108 } 108 }
109 109
110 void Logging::OnReceivedLoggingMessage(const Message& message) { 110 void Logging::OnReceivedLoggingMessage(const Message& message) {
111 std::vector<LogData> data; 111 std::vector<LogData> data;
112 PickleIterator iter(message); 112 PickleIterator iter(message);
113 if (!ReadParam(&message, &iter, &data)) 113 if (!ReadParam(&message, &iter, &data))
114 return; 114 return;
115 115
116 for (size_t i = 0; i < data.size(); ++i) { 116 for (size_t i = 0; i < data.size(); ++i) {
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 data->receive = message.received_time(); 305 data->receive = message.received_time();
306 data->dispatch = Time::Now().ToInternalValue(); 306 data->dispatch = Time::Now().ToInternalValue();
307 data->params = params; 307 data->params = params;
308 data->message_name = message_name; 308 data->message_name = message_name;
309 } 309 }
310 } 310 }
311 311
312 } 312 }
313 313
314 #endif // IPC_MESSAGE_LOG_ENABLED 314 #endif // IPC_MESSAGE_LOG_ENABLED
OLDNEW
« no previous file with comments | « ipc/ipc_logging.h ('k') | ipc/ipc_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698