| 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 "remoting/host/plugin/host_log_handler.h" | 5 #include "remoting/host/plugin/host_log_handler.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "remoting/base/logging.h" | 8 #include "remoting/base/logging.h" |
| 9 #include "remoting/base/util.h" | 9 #include "remoting/base/util.h" |
| 10 #include "remoting/host/plugin/host_script_object.h" | 10 #include "remoting/host/plugin/host_script_object.h" |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 } | 114 } |
| 115 | 115 |
| 116 // Call the next log handler in the chain. | 116 // Call the next log handler in the chain. |
| 117 if (g_logging_old_handler) | 117 if (g_logging_old_handler) |
| 118 return (g_logging_old_handler)(severity, file, line, message_start, str); | 118 return (g_logging_old_handler)(severity, file, line, message_start, str); |
| 119 | 119 |
| 120 return false; | 120 return false; |
| 121 } | 121 } |
| 122 | 122 |
| 123 } // namespace remoting | 123 } // namespace remoting |
| OLD | NEW |