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

Side by Side Diff: ipc/ipc_logging.cc

Issue 57783006: Revert https://src.chromium.org/viewvc/chrome?view=rev&revision=231330 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile (cc perftest). Created 7 years, 1 month 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_fuzzing_tests.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_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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 89
90 void Logging::Disable() { 90 void Logging::Disable() {
91 enabled_ = false; 91 enabled_ = false;
92 } 92 }
93 93
94 void Logging::OnSendLogs() { 94 void Logging::OnSendLogs() {
95 queue_invoke_later_pending_ = false; 95 queue_invoke_later_pending_ = false;
96 if (!sender_) 96 if (!sender_)
97 return; 97 return;
98 98
99 Message* msg = new Message(MSG_ROUTING_CONTROL, IPC_LOGGING_ID); 99 Message* msg = new Message(
100 MSG_ROUTING_CONTROL, IPC_LOGGING_ID, Message::PRIORITY_NORMAL);
100 WriteParam(msg, queued_logs_); 101 WriteParam(msg, queued_logs_);
101 queued_logs_.clear(); 102 queued_logs_.clear();
102 sender_->Send(msg); 103 sender_->Send(msg);
103 } 104 }
104 105
105 void Logging::SetIPCSender(IPC::Sender* sender) { 106 void Logging::SetIPCSender(IPC::Sender* sender) {
106 sender_ = sender; 107 sender_ = sender;
107 } 108 }
108 109
109 void Logging::OnReceivedLoggingMessage(const Message& message) { 110 void Logging::OnReceivedLoggingMessage(const Message& message) {
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 data->receive = message.received_time(); 306 data->receive = message.received_time();
306 data->dispatch = Time::Now().ToInternalValue(); 307 data->dispatch = Time::Now().ToInternalValue();
307 data->params = params; 308 data->params = params;
308 data->message_name = message_name; 309 data->message_name = message_name;
309 } 310 }
310 } 311 }
311 312
312 } 313 }
313 314
314 #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.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698