| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 if (logging_env_var_set) { | 70 if (logging_env_var_set) { |
| 71 enabled_ = true; | 71 enabled_ = true; |
| 72 enabled_on_stderr_ = true; | 72 enabled_on_stderr_ = true; |
| 73 } | 73 } |
| 74 } | 74 } |
| 75 | 75 |
| 76 Logging::~Logging() { | 76 Logging::~Logging() { |
| 77 } | 77 } |
| 78 | 78 |
| 79 Logging* Logging::GetInstance() { | 79 Logging* Logging::GetInstance() { |
| 80 return Singleton<Logging>::get(); | 80 return base::Singleton<Logging>::get(); |
| 81 } | 81 } |
| 82 | 82 |
| 83 void Logging::SetConsumer(Consumer* consumer) { | 83 void Logging::SetConsumer(Consumer* consumer) { |
| 84 consumer_ = consumer; | 84 consumer_ = consumer; |
| 85 } | 85 } |
| 86 | 86 |
| 87 void Logging::Enable() { | 87 void Logging::Enable() { |
| 88 enabled_ = true; | 88 enabled_ = true; |
| 89 } | 89 } |
| 90 | 90 |
| (...skipping 215 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 |