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

Side by Side Diff: base/debug/stack_trace_android.cc

Issue 693773003: Cleanup various includes and namespace references. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 | « no previous file | base/logging.h » ('j') | base/logging.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium 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 "base/debug/stack_trace.h" 5 #include "base/debug/stack_trace.h"
6 6
7 #include <android/log.h> 7 #include <android/log.h>
8 #include <unwind.h> 8 #include <unwind.h>
9 9
10 #include "base/debug/proc_maps_linux.h" 10 #include "base/debug/proc_maps_linux.h"
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 ++iter; 110 ++iter;
111 } 111 }
112 112
113 *os << base::StringPrintf("#%02zd " FMT_ADDR " ", i, address); 113 *os << base::StringPrintf("#%02zd " FMT_ADDR " ", i, address);
114 114
115 if (iter != regions.end()) { 115 if (iter != regions.end()) {
116 uintptr_t rel_pc = address - iter->start + iter->offset; 116 uintptr_t rel_pc = address - iter->start + iter->offset;
117 const char* path = iter->path.c_str(); 117 const char* path = iter->path.c_str();
118 *os << base::StringPrintf("%s+" FMT_ADDR, path, rel_pc); 118 *os << base::StringPrintf("%s+" FMT_ADDR, path, rel_pc);
119 } else { 119 } else {
120 *os << "<unknown>"; 120 *os << std::string("<unknown>");
Nico 2014/10/31 14:30:08 Out of interest, what happens without this? Writin
Fabrice (no longer in Chrome) 2014/10/31 15:45:23 Maybe it works with Clang and not GCC? I noticed t
Nico 2014/10/31 16:10:03 Oh, that's a good point. Works with gcc on my mac
Fabrice (no longer in Chrome) 2014/10/31 17:01:15 Yes, that was it, thanks!
121 } 121 }
122 122
123 *os << "\n"; 123 *os << std::string("\n");
124 } 124 }
125 } 125 }
126 126
127 } // namespace debug 127 } // namespace debug
128 } // namespace base 128 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | base/logging.h » ('j') | base/logging.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698