diff --git a/crash_reporter/Makefile b/crash_reporter/Makefile index 9a25a8839..b8870a7d7 100644 --- a/crash_reporter/Makefile +++ b/crash_reporter/Makefile @@ -1,8 +1,8 @@ -# Copyright (c) 2010 The Chromium OS Authors. All rights reserved. +# Copyright (c) 2012 The Chromium OS Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -BASE_VER = 85268 +BASE_VER ?= 125070 PKG_CONFIG ?= pkg-config CRASH_REPORTER = crash_reporter diff --git a/crash_reporter/crash_collector.cc b/crash_reporter/crash_collector.cc index 6046dc553..8b80f3715 100644 --- a/crash_reporter/crash_collector.cc +++ b/crash_reporter/crash_collector.cc @@ -21,6 +21,7 @@ #include "base/logging.h" #include "base/string_split.h" #include "base/string_util.h" +#include "base/stringprintf.h" #include "chromeos/process.h" static const char kCollectChromeFile[] = diff --git a/crash_reporter/crash_collector_test.cc b/crash_reporter/crash_collector_test.cc index d98e1af97..2635bbfcc 100644 --- a/crash_reporter/crash_collector_test.cc +++ b/crash_reporter/crash_collector_test.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium OS Authors. All rights reserved. +// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -6,6 +6,7 @@ #include "base/file_util.h" #include "base/string_util.h" +#include "base/stringprintf.h" #include "chromeos/syslog_logging.h" #include "chromeos/test_helpers.h" #include "crash-reporter/crash_collector.h" diff --git a/crash_reporter/crash_reporter.cc b/crash_reporter/crash_reporter.cc index 263caf42e..4fab0b7aa 100644 --- a/crash_reporter/crash_reporter.cc +++ b/crash_reporter/crash_reporter.cc @@ -12,6 +12,7 @@ #include "base/logging.h" #include "base/string_split.h" #include "base/string_util.h" +#include "base/stringprintf.h" #include "chromeos/syslog_logging.h" #include "crash-reporter/kernel_collector.h" #include "crash-reporter/unclean_shutdown_collector.h" diff --git a/crash_reporter/kernel_collector.cc b/crash_reporter/kernel_collector.cc index 0895b4eb3..e15dc8553 100644 --- a/crash_reporter/kernel_collector.cc +++ b/crash_reporter/kernel_collector.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium OS Authors. All rights reserved. +// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -7,6 +7,7 @@ #include "base/file_util.h" #include "base/logging.h" #include "base/string_util.h" +#include "base/stringprintf.h" static const char kDefaultKernelStackSignature[] = "kernel-UnspecifiedStackSignature"; diff --git a/crash_reporter/kernel_collector_test.cc b/crash_reporter/kernel_collector_test.cc index 873a5a7cd..59f435a2e 100644 --- a/crash_reporter/kernel_collector_test.cc +++ b/crash_reporter/kernel_collector_test.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium OS Authors. All rights reserved. +// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -6,6 +6,7 @@ #include "base/file_util.h" #include "base/string_util.h" +#include "base/stringprintf.h" #include "chromeos/syslog_logging.h" #include "chromeos/test_helpers.h" #include "crash-reporter/kernel_collector.h" diff --git a/crash_reporter/user_collector.cc b/crash_reporter/user_collector.cc index 28c5ce6c9..b060bd69d 100644 --- a/crash_reporter/user_collector.cc +++ b/crash_reporter/user_collector.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium OS Authors. All rights reserved. +// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -19,6 +19,7 @@ #include "base/logging.h" #include "base/string_split.h" #include "base/string_util.h" +#include "base/stringprintf.h" #include "chromeos/process.h" #include "chromeos/syslog_logging.h" #include "gflags/gflags.h" diff --git a/crash_reporter/user_collector_test.cc b/crash_reporter/user_collector_test.cc index 2d3ac0c76..8fcbaefd6 100644 --- a/crash_reporter/user_collector_test.cc +++ b/crash_reporter/user_collector_test.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium OS Authors. All rights reserved. +// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -8,7 +8,7 @@ #include "base/file_util.h" #include "base/string_split.h" -#include "base/memory/scoped_temp_dir.h" +#include "base/scoped_temp_dir.h" #include "chromeos/syslog_logging.h" #include "chromeos/test_helpers.h" #include "crash-reporter/user_collector.h"