summaryrefslogtreecommitdiffstats
path: root/base/debug
diff options
context:
space:
mode:
authorwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-12 01:29:27 +0000
committerwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-12 01:29:27 +0000
commit4eee045cef873bb481b5addc0abc8d0deac89604 (patch)
tree41be89706cc38780932a39e13e661bd6608274f2 /base/debug
parent75de721b7a3aa1b97189dac543487cf06080ec42 (diff)
downloadchromium_src-4eee045cef873bb481b5addc0abc8d0deac89604.zip
chromium_src-4eee045cef873bb481b5addc0abc8d0deac89604.tar.gz
chromium_src-4eee045cef873bb481b5addc0abc8d0deac89604.tar.bz2
Add the StackTrace to the URLFetcher crash dumps.
This will help me in narrowing down which URLFetcher is leaking the URLRequest in these crashes. BUG= 90971,127860 TBR=eroman TEST=none Review URL: https://chromiumcodereview.appspot.com/10383145 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136736 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug')
-rw-r--r--base/debug/stack_trace_android.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/base/debug/stack_trace_android.cc b/base/debug/stack_trace_android.cc
index 2ccf406..c3db4c8 100644
--- a/base/debug/stack_trace_android.cc
+++ b/base/debug/stack_trace_android.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -16,6 +16,9 @@ namespace debug {
StackTrace::StackTrace() {
}
+StackTrace::StackTrace(const void* const* trace, size_t count) {
+}
+
StackTrace::~StackTrace() {
}