| 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_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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 queued_logs_.clear(); | 103 queued_logs_.clear(); |
| 104 sender_->Send(msg); | 104 sender_->Send(msg); |
| 105 } | 105 } |
| 106 | 106 |
| 107 void Logging::SetIPCSender(IPC::Sender* sender) { | 107 void Logging::SetIPCSender(IPC::Sender* sender) { |
| 108 sender_ = sender; | 108 sender_ = sender; |
| 109 } | 109 } |
| 110 | 110 |
| 111 void Logging::OnReceivedLoggingMessage(const Message& message) { | 111 void Logging::OnReceivedLoggingMessage(const Message& message) { |
| 112 std::vector<LogData> data; | 112 std::vector<LogData> data; |
| 113 PickleIterator iter(message); | 113 base::PickleIterator iter(message); |
| 114 if (!ReadParam(&message, &iter, &data)) | 114 if (!ReadParam(&message, &iter, &data)) |
| 115 return; | 115 return; |
| 116 | 116 |
| 117 for (size_t i = 0; i < data.size(); ++i) { | 117 for (size_t i = 0; i < data.size(); ++i) { |
| 118 Log(data[i]); | 118 Log(data[i]); |
| 119 } | 119 } |
| 120 } | 120 } |
| 121 | 121 |
| 122 void Logging::OnSendMessage(Message* message, const std::string& channel_id) { | 122 void Logging::OnSendMessage(Message* message, const std::string& channel_id) { |
| 123 if (!Enabled()) | 123 if (!Enabled()) |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 data->receive = message.received_time(); | 306 data->receive = message.received_time(); |
| 307 data->dispatch = Time::Now().ToInternalValue(); | 307 data->dispatch = Time::Now().ToInternalValue(); |
| 308 data->params = params; | 308 data->params = params; |
| 309 data->message_name = message_name; | 309 data->message_name = message_name; |
| 310 } | 310 } |
| 311 } | 311 } |
| 312 | 312 |
| 313 } | 313 } |
| 314 | 314 |
| 315 #endif // IPC_MESSAGE_LOG_ENABLED | 315 #endif // IPC_MESSAGE_LOG_ENABLED |
| OLD | NEW |