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

Unified Diff: chrome/renderer/security_filter_peer.cc

Issue 1548153002: Switch to standard integer types in chrome/. (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 | « chrome/renderer/security_filter_peer.h ('k') | chrome/renderer/spellchecker/custom_dictionary_engine.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/security_filter_peer.cc
diff --git a/chrome/renderer/security_filter_peer.cc b/chrome/renderer/security_filter_peer.cc
index e8ca8367fe2cd0ac0deeed2e027a9e8803c4ecb9..9a7d82738392c346b2222f12340d2ddf4a73142e 100644
--- a/chrome/renderer/security_filter_peer.cc
+++ b/chrome/renderer/security_filter_peer.cc
@@ -67,7 +67,7 @@ SecurityFilterPeer* SecurityFilterPeer::CreateSecurityFilterPeerForFrame(
return new ReplaceContentPeer(peer, "text/html", html);
}
-void SecurityFilterPeer::OnUploadProgress(uint64 position, uint64 size) {
+void SecurityFilterPeer::OnUploadProgress(uint64_t position, uint64_t size) {
original_peer_->OnUploadProgress(position, size);
}
@@ -130,7 +130,7 @@ void BufferedPeer::OnCompletedRequest(int error_code,
bool stale_copy_in_cache,
const std::string& security_info,
const base::TimeTicks& completion_time,
- int64 total_transfer_size) {
+ int64_t total_transfer_size) {
// Make sure we delete ourselves at the end of this call.
scoped_ptr<BufferedPeer> this_deleter(this);
@@ -159,7 +159,7 @@ void BufferedPeer::OnReceivedCompletedResponse(
bool stale_copy_in_cache,
const std::string& security_info,
const base::TimeTicks& completion_time,
- int64 total_transfer_size) {
+ int64_t total_transfer_size) {
// Make sure we delete ourselves at the end of this call.
scoped_ptr<BufferedPeer> this_deleter(this);
original_peer_->OnReceivedCompletedResponse(
@@ -195,7 +195,7 @@ void ReplaceContentPeer::OnCompletedRequest(
bool stale_copy_in_cache,
const std::string& security_info,
const base::TimeTicks& completion_time,
- int64 total_transfer_size) {
+ int64_t total_transfer_size) {
// Make sure we delete ourselves at the end of this call.
scoped_ptr<ReplaceContentPeer> this_deleter(this);
@@ -220,7 +220,7 @@ void ReplaceContentPeer::OnReceivedCompletedResponse(
bool stale_copy_in_cache,
const std::string& security_info,
const base::TimeTicks& completion_time,
- int64 total_transfer_size) {
+ int64_t total_transfer_size) {
// Make sure we delete ourselves at the end of this call.
scoped_ptr<ReplaceContentPeer> this_deleter(this);
« no previous file with comments | « chrome/renderer/security_filter_peer.h ('k') | chrome/renderer/spellchecker/custom_dictionary_engine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698