| Index: chrome/browser/chromeos/file_system_provider/fileapi/provider_async_file_util_unittest.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/fileapi/provider_async_file_util_unittest.cc b/chrome/browser/chromeos/file_system_provider/fileapi/provider_async_file_util_unittest.cc
|
| index cd2b02b59c82afd5247dac36ecdda7d00d359d22..cefd05241b6b58268275e00e624e0c561f8c8fef 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/fileapi/provider_async_file_util_unittest.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/fileapi/provider_async_file_util_unittest.cc
|
| @@ -4,12 +4,15 @@
|
|
|
| #include "chrome/browser/chromeos/file_system_provider/fileapi/provider_async_file_util.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
| #include <vector>
|
|
|
| #include "base/files/file.h"
|
| #include "base/files/file_path.h"
|
| #include "base/files/scoped_temp_dir.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/run_loop.h"
|
| @@ -79,7 +82,7 @@ class EventLogger {
|
| result_.reset(new base::File::Error(error));
|
| }
|
|
|
| - void OnCopyFileProgress(int64 size) {}
|
| + void OnCopyFileProgress(int64_t size) {}
|
|
|
| base::File::Error* result() { return result_.get(); }
|
|
|
|
|