Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Unified Diff: chrome/browser/sync_file_system/sync_process_runner_unittest.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync_file_system/sync_process_runner_unittest.cc
diff --git a/chrome/browser/sync_file_system/sync_process_runner_unittest.cc b/chrome/browser/sync_file_system/sync_process_runner_unittest.cc
index a1bd4b7f62288ab8839e172a57a586895256d4ca..d1231421ed843a43d210606147a3c8076d69e393 100644
--- a/chrome/browser/sync_file_system/sync_process_runner_unittest.cc
+++ b/chrome/browser/sync_file_system/sync_process_runner_unittest.cc
@@ -4,8 +4,12 @@
#include "chrome/browser/sync_file_system/sync_process_runner.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <queue>
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -62,7 +66,7 @@ class FakeTimerHelper : public SyncProcessRunner::TimerHelper {
SetCurrentTime(scheduled_time_);
}
- int64 GetCurrentDelay() {
+ int64_t GetCurrentDelay() {
EXPECT_FALSE(timer_task_.is_null());
return (scheduled_time_ - current_time_).InMilliseconds();
}
« no previous file with comments | « chrome/browser/sync_file_system/sync_process_runner.cc ('k') | chrome/browser/sync_file_system/task_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698