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

Unified Diff: components/drive/file_write_watcher.cc

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « components/drive/file_write_watcher.h ('k') | components/drive/file_write_watcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/file_write_watcher.cc
diff --git a/components/drive/file_write_watcher.cc b/components/drive/file_write_watcher.cc
index c1b48150079a795ed97971c0a9d7df2fda4f5434..71f810a40236da13a4a99635235c2afeea019534 100644
--- a/components/drive/file_write_watcher.cc
+++ b/components/drive/file_write_watcher.cc
@@ -4,12 +4,16 @@
#include "components/drive/file_write_watcher.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <map>
#include <vector>
#include "base/bind.h"
#include "base/callback.h"
#include "base/files/file_path_watcher.h"
+#include "base/macros.h"
#include "base/stl_util.h"
#include "base/timer/timer.h"
#include "google_apis/drive/task_util.h"
@@ -18,7 +22,7 @@ namespace drive {
namespace internal {
namespace {
-const int64 kWriteEventDelayInSeconds = 5;
+const int64_t kWriteEventDelayInSeconds = 5;
} // namespace
// base::FileWatcher needs to live in a thread that is allowed to do File IO
« no previous file with comments | « components/drive/file_write_watcher.h ('k') | components/drive/file_write_watcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698