| Index: chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| diff --git a/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc b/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| index 2391dcc1a9136a514f4814bc229a8ad67b28119c..8ccf44d04b4c4bc6405f1fc09e542689424aaf26 100644
|
| --- a/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| +++ b/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| @@ -2,12 +2,15 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/files/file.h"
|
| #include "base/files/file_util.h"
|
| #include "base/location.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/run_loop.h"
|
| @@ -119,7 +122,9 @@ class SyncableFileOperationRunnerTest : public testing::Test {
|
| }
|
|
|
| void DidWrite(const tracked_objects::Location& location,
|
| - File::Error status, int64 bytes, bool complete) {
|
| + File::Error status,
|
| + int64_t bytes,
|
| + bool complete) {
|
| SCOPED_TRACE(testing::Message() << location.ToString());
|
| write_status_ = status;
|
| write_bytes_ += bytes;
|
|
|