| Index: base/debug/proc_maps_linux.h
|
| diff --git a/base/debug/proc_maps_linux.h b/base/debug/proc_maps_linux.h
|
| index 9fbd47898d378407aab5cb6f7b20e96050018883..38e92314c8fc70338c4815a6c9c1673b24d4b82b 100644
|
| --- a/base/debug/proc_maps_linux.h
|
| +++ b/base/debug/proc_maps_linux.h
|
| @@ -5,11 +5,12 @@
|
| #ifndef BASE_DEBUG_PROC_MAPS_LINUX_H_
|
| #define BASE_DEBUG_PROC_MAPS_LINUX_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
| #include <vector>
|
|
|
| #include "base/base_export.h"
|
| -#include "base/basictypes.h"
|
|
|
| namespace base {
|
| namespace debug {
|
| @@ -31,7 +32,7 @@ struct MappedMemoryRegion {
|
| unsigned long long offset;
|
|
|
| // Bitmask of read/write/execute/private/shared permissions.
|
| - uint8 permissions;
|
| + uint8_t permissions;
|
|
|
| // Name of the file mapped into memory.
|
| //
|
|
|