| Index: chrome/test/base/chrome_process_util_mac.cc
|
| diff --git a/chrome/test/base/chrome_process_util_mac.cc b/chrome/test/base/chrome_process_util_mac.cc
|
| index cb19bc404fa441d067ba96f508e27d1ccc4a747c..ce7f6a0522d33753cc772b84cd2b1c0c32c5b978 100644
|
| --- a/chrome/test/base/chrome_process_util_mac.cc
|
| +++ b/chrome/test/base/chrome_process_util_mac.cc
|
| @@ -4,6 +4,9 @@
|
|
|
| #include "chrome/test/base/chrome_process_util.h"
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -60,9 +63,9 @@ MacChromeProcessInfoList GetRunningMacProcessInfo(
|
| // We fill in both values we may get called for, even though our
|
| // callers typically only care about one, just to keep the code
|
| // simple and because this is a test.
|
| -static bool GetMemoryValuesHack(uint32 process_id,
|
| - size_t* virtual_size,
|
| - size_t* working_set_size) {
|
| +static bool GetMemoryValuesHack(uint32_t process_id,
|
| + size_t* virtual_size,
|
| + size_t* working_set_size) {
|
| DCHECK(virtual_size && working_set_size);
|
|
|
| std::vector<base::ProcessId> processes;
|
|
|