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

Unified Diff: content/child/multipart_response_delegate.h

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
« no previous file with comments | « content/child/mojo/type_converters.h ('k') | content/child/multipart_response_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/multipart_response_delegate.h
diff --git a/content/child/multipart_response_delegate.h b/content/child/multipart_response_delegate.h
index aac659eb7562bce524a48e6b0f4272b00bde8de7..b76afdb4c2e9c26137b467be541e0ff65505ed96 100644
--- a/content/child/multipart_response_delegate.h
+++ b/content/child/multipart_response_delegate.h
@@ -51,7 +51,11 @@
#include <string>
-#include "base/basictypes.h"
+#include <stddef.h>
+
+#include <stdint.h>
+
+#include "base/macros.h"
#include "content/common/content_export.h"
#include "third_party/WebKit/public/platform/WebURLResponse.h"
@@ -88,11 +92,10 @@ class CONTENT_EXPORT MultipartResponseDelegate {
// Returns the lower and higher content ranges from an individual multipart
// in a multipart response.
// Returns true on success.
- static bool ReadContentRanges(
- const blink::WebURLResponse& response,
- int64* content_range_lower_bound,
- int64* content_range_upper_bound,
- int64* content_range_instance_size);
+ static bool ReadContentRanges(const blink::WebURLResponse& response,
+ int64_t* content_range_lower_bound,
+ int64_t* content_range_upper_bound,
+ int64_t* content_range_instance_size);
private:
friend class MultipartResponseDelegateTester; // For unittests.
« no previous file with comments | « content/child/mojo/type_converters.h ('k') | content/child/multipart_response_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698