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

Unified Diff: components/drive/drive_uploader.h

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/drive_test_util.h ('k') | components/drive/drive_uploader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/drive_uploader.h
diff --git a/components/drive/drive_uploader.h b/components/drive/drive_uploader.h
index e383614fdd7fcb1fc9286bed5666f27425f4d77a..13ab9a7cc3127332b60edb94d5595b151d581f02 100644
--- a/components/drive/drive_uploader.h
+++ b/components/drive/drive_uploader.h
@@ -5,10 +5,12 @@
#ifndef COMPONENTS_DRIVE_DRIVE_UPLOADER_H_
#define COMPONENTS_DRIVE_DRIVE_UPLOADER_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
#include "base/callback_forward.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
@@ -205,10 +207,10 @@ class DriveUploader : public DriveUploaderInterface {
const google_apis::UploadRangeResponse& response,
scoped_ptr<google_apis::FileResource> entry);
void OnUploadProgress(const google_apis::ProgressCallback& callback,
- int64 start_position,
- int64 total_size,
- int64 progress_of_chunk,
- int64 total_of_chunk);
+ int64_t start_position,
+ int64_t total_size,
+ int64_t progress_of_chunk,
+ int64_t total_of_chunk);
// Handles failed uploads.
void UploadFailed(scoped_ptr<UploadFileInfo> upload_file_info,
« no previous file with comments | « components/drive/drive_test_util.h ('k') | components/drive/drive_uploader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698