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

Unified Diff: content/browser/download/mock_download_file.h

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 | « content/browser/download/mhtml_generation_manager.cc ('k') | content/browser/download/rate_estimator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/mock_download_file.h
diff --git a/content/browser/download/mock_download_file.h b/content/browser/download/mock_download_file.h
index 8be2c9351dbf9d24a1e1b542e6b205c193878445..a0020b686c98ce619b39390a64d7441d0a96c6f7 100644
--- a/content/browser/download/mock_download_file.h
+++ b/content/browser/download/mock_download_file.h
@@ -5,6 +5,9 @@
#ifndef CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_
#define CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_
+#include <stddef.h>
+#include <stdint.h>
+
#include <map>
#include <string>
@@ -40,8 +43,8 @@ class MockDownloadFile : public DownloadFile {
MOCK_METHOD0(Finish, void());
MOCK_CONST_METHOD0(FullPath, base::FilePath());
MOCK_CONST_METHOD0(InProgress, bool());
- MOCK_CONST_METHOD0(BytesSoFar, int64());
- MOCK_CONST_METHOD0(CurrentSpeed, int64());
+ MOCK_CONST_METHOD0(BytesSoFar, int64_t());
+ MOCK_CONST_METHOD0(CurrentSpeed, int64_t());
MOCK_METHOD1(GetHash, bool(std::string* hash));
MOCK_METHOD0(GetHashState, std::string());
MOCK_METHOD0(SendUpdate, void());
« no previous file with comments | « content/browser/download/mhtml_generation_manager.cc ('k') | content/browser/download/rate_estimator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698