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

Side by Side Diff: system_logging_mock.cc

Issue 2868032: Remove source from crash-reporter and crash-dumper as they are no longer necessary. (Closed) Base URL: ssh://git@chromiumos-git//crash.git
Patch Set: Created 10 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 | « system_logging_mock.h ('k') | user_collector.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include <stdarg.h>
6
7 #include "base/string_util.h"
8 #include "crash/system_logging_mock.h"
9
10 void SystemLoggingMock::LogInfo(const char *format, ...) {
11 va_list vl;
12 va_start(vl, format);
13 log_ += ident_ + "info: ";
14 StringAppendV(&log_, format, vl);
15 log_ += "\n";
16 va_end(vl);
17 }
18
19 void SystemLoggingMock::LogWarning(const char *format, ...) {
20 va_list vl;
21 va_start(vl, format);
22 log_ += ident_ + "warning: ";
23 StringAppendV(&log_, format, vl);
24 log_ += "\n";
25 va_end(vl);
26 }
27
28 void SystemLoggingMock::LogError(const char *format, ...) {
29 va_list vl;
30 va_start(vl, format);
31 log_ += ident_ + "error: ";
32 StringAppendV(&log_, format, vl);
33 log_ += "\n";
34 va_end(vl);
35 }
OLDNEW
« no previous file with comments | « system_logging_mock.h ('k') | user_collector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698