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

Side by Side Diff: system_logging_mock.cc

Issue 6297004: crash-reporter: Add diagnostics to help diagnose failures in the wild (Closed) Base URL: http://git.chromium.org/git/crash-reporter.git@master
Patch Set: respond to review Created 9 years, 11 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 | Annotate | Revision Log
« 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
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
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_accumulating(bool value) {
38 }
39
40 std::string SystemLoggingMock::get_accumulator() {
41 return "";
42 }
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