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

Side by Side Diff: base/debug/stack_trace.h

Issue 1549043002: Switch to standard integer types in base/debug/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « base/debug/profiler.cc ('k') | base/debug/stack_trace.cc » ('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) 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 #ifndef BASE_DEBUG_STACK_TRACE_H_ 5 #ifndef BASE_DEBUG_STACK_TRACE_H_
6 #define BASE_DEBUG_STACK_TRACE_H_ 6 #define BASE_DEBUG_STACK_TRACE_H_
7 7
8 #include <stddef.h>
9
8 #include <iosfwd> 10 #include <iosfwd>
9 #include <string> 11 #include <string>
10 12
11 #include "base/base_export.h" 13 #include "base/base_export.h"
12 #include "build/build_config.h" 14 #include "build/build_config.h"
13 15
14 #if defined(OS_POSIX) 16 #if defined(OS_POSIX)
15 #include <unistd.h> 17 #include <unistd.h>
16 #endif 18 #endif
17 19
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 int base, 108 int base,
107 size_t padding); 109 size_t padding);
108 #endif // defined(OS_POSIX) && !defined(OS_ANDROID) 110 #endif // defined(OS_POSIX) && !defined(OS_ANDROID)
109 111
110 } // namespace internal 112 } // namespace internal
111 113
112 } // namespace debug 114 } // namespace debug
113 } // namespace base 115 } // namespace base
114 116
115 #endif // BASE_DEBUG_STACK_TRACE_H_ 117 #endif // BASE_DEBUG_STACK_TRACE_H_
OLDNEW
« no previous file with comments | « base/debug/profiler.cc ('k') | base/debug/stack_trace.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698