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

Unified Diff: base/debug/stack_trace_android.cc

Issue 10702142: Use common stack trace code in Android port (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/base.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/debug/stack_trace_android.cc
diff --git a/base/debug/stack_trace_android.cc b/base/debug/stack_trace_android.cc
index 9d7c8315a9d5a115c6fa5d4e97c84679c171b77c..7d74bec54eccbad5fc138a10473cba76199c1681 100644
--- a/base/debug/stack_trace_android.cc
+++ b/base/debug/stack_trace_android.cc
@@ -16,17 +16,6 @@ namespace debug {
StackTrace::StackTrace() {
}
-StackTrace::StackTrace(const void* const* trace, size_t count) {
-}
-
-StackTrace::~StackTrace() {
-}
-
-const void* const* StackTrace::Addresses(size_t* count) const {
- NOTIMPLEMENTED();
- return NULL;
-}
-
// Sends fake SIGSTKFLT signals to let the Android linker and debuggerd dump
// stack. See inlined comments and Android bionic/linker/debugger.c and
// system/core/debuggerd/debuggerd.c for details.
@@ -55,10 +44,5 @@ void StackTrace::OutputToStream(std::ostream* os) const {
NOTIMPLEMENTED();
}
-std::string StackTrace::ToString() const {
- NOTIMPLEMENTED();
- return "";
-}
-
} // namespace debug
} // namespace base
« no previous file with comments | « base/base.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698