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

Unified Diff: content/child/multipart_response_delegate_unittest.cc

Issue 1544273002: Switch to standard integer types in content/. (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
Index: content/child/multipart_response_delegate_unittest.cc
diff --git a/content/child/multipart_response_delegate_unittest.cc b/content/child/multipart_response_delegate_unittest.cc
index 38e8390b32b8a78ca3bdee2a6b4395b5d40b1812..a6076cff250cc2b9ac06c6e83e0eb4354915a12d 100644
--- a/content/child/multipart_response_delegate_unittest.cc
+++ b/content/child/multipart_response_delegate_unittest.cc
@@ -4,8 +4,12 @@
#include "content/child/multipart_response_delegate.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <vector>
+#include "base/macros.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/WebKit/public/platform/WebString.h"
#include "third_party/WebKit/public/platform/WebURL.h"
@@ -570,9 +574,9 @@ TEST(MultipartResponseTest, MultipartContentRangesTest) {
response1.setHTTPHeaderField("Content-Range",
"bytes 5000000000-5000000050/6000000000");
- int64 content_range_lower_bound = 0;
- int64 content_range_upper_bound = 0;
- int64 content_range_instance_size = 0;
+ int64_t content_range_lower_bound = 0;
+ int64_t content_range_upper_bound = 0;
+ int64_t content_range_instance_size = 0;
bool result = MultipartResponseDelegate::ReadContentRanges(
response1, &content_range_lower_bound,
« no previous file with comments | « content/child/multipart_response_delegate.cc ('k') | content/child/navigator_connect/service_port_dispatcher_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698