| Index: chrome/browser/memory/tab_stats.h
|
| diff --git a/chrome/browser/memory/tab_stats.h b/chrome/browser/memory/tab_stats.h
|
| index 8f40c51db44a058299fcd5313629f3c85a078a8c..00de0e0dd7feec513d90198e006c10ebc2b3124f 100644
|
| --- a/chrome/browser/memory/tab_stats.h
|
| +++ b/chrome/browser/memory/tab_stats.h
|
| @@ -5,11 +5,14 @@
|
| #ifndef CHROME_BROWSER_MEMORY_TAB_STATS_H_
|
| #define CHROME_BROWSER_MEMORY_TAB_STATS_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <vector>
|
|
|
| #include "base/process/process.h"
|
| #include "base/strings/string16.h"
|
| #include "base/time/time.h"
|
| +#include "build/build_config.h"
|
|
|
| namespace memory {
|
|
|
| @@ -31,7 +34,7 @@ struct TabStats {
|
| #if defined(OS_CHROMEOS)
|
| int oom_score;
|
| #endif
|
| - int64 tab_contents_id; // Unique ID per WebContents.
|
| + int64_t tab_contents_id; // Unique ID per WebContents.
|
| };
|
|
|
| typedef std::vector<TabStats> TabStatsList;
|
|
|