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); |