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

Unified Diff: components/drive/fake_free_disk_space_getter.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/fake_free_disk_space_getter.h ('k') | components/drive/file_cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/fake_free_disk_space_getter.cc
diff --git a/components/drive/fake_free_disk_space_getter.cc b/components/drive/fake_free_disk_space_getter.cc
index 22df758af4a0f9bfc6285a21ef89710a404aedc3..144451757e6ecb670f78c0a15501b897b59a141d 100644
--- a/components/drive/fake_free_disk_space_getter.cc
+++ b/components/drive/fake_free_disk_space_getter.cc
@@ -15,15 +15,15 @@ FakeFreeDiskSpaceGetter::FakeFreeDiskSpaceGetter()
FakeFreeDiskSpaceGetter::~FakeFreeDiskSpaceGetter() {
}
-void FakeFreeDiskSpaceGetter::PushFakeValue(int64 value) {
+void FakeFreeDiskSpaceGetter::PushFakeValue(int64_t value) {
fake_values_.push_back(value);
}
-int64 FakeFreeDiskSpaceGetter::AmountOfFreeDiskSpace() {
+int64_t FakeFreeDiskSpaceGetter::AmountOfFreeDiskSpace() {
if (fake_values_.empty())
return default_value_;
- const int64 value = fake_values_.front();
+ const int64_t value = fake_values_.front();
fake_values_.pop_front();
return value;
}
« no previous file with comments | « components/drive/fake_free_disk_space_getter.h ('k') | components/drive/file_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698