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

Unified Diff: media/blink/resource_multibuffer_data_provider.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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: media/blink/resource_multibuffer_data_provider.h
diff --git a/media/blink/resource_multibuffer_data_provider.h b/media/blink/resource_multibuffer_data_provider.h
index 89b70e51c4cf584c03798ad6a4988ac4f42b28c2..60bd0e7bd524652a135cb349c5d4939936898835 100644
--- a/media/blink/resource_multibuffer_data_provider.h
+++ b/media/blink/resource_multibuffer_data_provider.h
@@ -76,9 +76,9 @@ class MEDIA_BLINK_EXPORT ResourceMultiBufferDataProvider
// NOTE: only public for testing! This is an implementation detail of
// VerifyPartialResponse (a private method).
static bool ParseContentRange(const std::string& content_range_str,
- int64* first_byte_position,
- int64* last_byte_position,
- int64* instance_size);
+ int64_t* first_byte_position,
+ int64_t* last_byte_position,
+ int64_t* instance_size);
int64_t byte_pos() const;
int64_t block_size() const;

Powered by Google App Engine
This is Rietveld 408576698