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

Side by Side Diff: ipc/ipc_logging.cc

Issue 1154283003: Change most uses of Pickle to base::Pickle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « ipc/ipc_fuzzing_tests.cc ('k') | ipc/ipc_message.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_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
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
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
OLDNEW
« no previous file with comments | « ipc/ipc_fuzzing_tests.cc ('k') | ipc/ipc_message.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698