OLD | NEW |
1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium OS 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 <stdarg.h> | 5 #include <stdarg.h> |
6 | 6 |
7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
8 #include "crash-reporter/system_logging_mock.h" | 8 #include "crash-reporter/system_logging_mock.h" |
9 | 9 |
10 void SystemLoggingMock::LogInfo(const char *format, ...) { | 10 void SystemLoggingMock::LogInfo(const char *format, ...) { |
(...skipping 15 matching lines...) Expand all Loading... |
26 } | 26 } |
27 | 27 |
28 void SystemLoggingMock::LogError(const char *format, ...) { | 28 void SystemLoggingMock::LogError(const char *format, ...) { |
29 va_list vl; | 29 va_list vl; |
30 va_start(vl, format); | 30 va_start(vl, format); |
31 log_ += ident_ + "error: "; | 31 log_ += ident_ + "error: "; |
32 StringAppendV(&log_, format, vl); | 32 StringAppendV(&log_, format, vl); |
33 log_ += "\n"; | 33 log_ += "\n"; |
34 va_end(vl); | 34 va_end(vl); |
35 } | 35 } |
| 36 |
| 37 void SystemLoggingMock::set_accumulator(std::string *accumulator) { |
| 38 } |
OLD | NEW |