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

Unified Diff: components/drive/file_system/download_operation.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
Index: components/drive/file_system/download_operation.cc
diff --git a/components/drive/file_system/download_operation.cc b/components/drive/file_system/download_operation.cc
index 150009c630caa307a47d95e5aa34dfd37c9e1256..33add71d80cf6140c3a000dc1eec6728f04dacc1 100644
--- a/components/drive/file_system/download_operation.cc
+++ b/components/drive/file_system/download_operation.cc
@@ -4,10 +4,13 @@
#include "components/drive/file_system/download_operation.h"
+#include <stdint.h>
+
#include "base/callback_helpers.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/task_runner_util.h"
#include "components/drive/drive.pb.h"
#include "components/drive/file_cache.h"
@@ -43,7 +46,7 @@ bool GeneratesUniquePathWithExtension(
// If succeeded, returns FILE_ERROR_OK with |temp_download_file| storing the
// path to the file in the cache.
FileError PrepareForDownloadFile(internal::FileCache* cache,
- int64 expected_file_size,
+ int64_t expected_file_size,
const base::FilePath& temporary_file_directory,
base::FilePath* temp_download_file) {
DCHECK(cache);
« no previous file with comments | « components/drive/file_system/download_operation.h ('k') | components/drive/file_system/download_operation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698