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

Unified Diff: media/base/android/media_player_bridge.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/base/android/media_player_bridge.h
diff --git a/media/base/android/media_player_bridge.h b/media/base/android/media_player_bridge.h
index 903f34b09605070e1508ec9b0482b6e0ae8d1149..b5031e8ee1e517ae9f772667648aac775b576aa9 100644
--- a/media/base/android/media_player_bridge.h
+++ b/media/base/android/media_player_bridge.h
@@ -138,8 +138,10 @@ class MEDIA_EXPORT MediaPlayerBridge : public MediaPlayerAndroid {
// Returns true if a MediaUrlInterceptor registered by the embedder has
// intercepted the url.
- bool InterceptMediaUrl(
- const std::string& url, int* fd, int64* offset, int64* size);
+ bool InterceptMediaUrl(const std::string& url,
+ int* fd,
+ int64_t* offset,
+ int64_t* size);
// Whether the player is prepared for playback.
bool prepared_;

Powered by Google App Engine
This is Rietveld 408576698