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

Unified Diff: media/base/android/media_url_interceptor.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_url_interceptor.h
diff --git a/media/base/android/media_url_interceptor.h b/media/base/android/media_url_interceptor.h
index e1db62392aacbcd2cb6c6e8ddabf63164f819cda..4ecb0d8518acbb9286d208b48feca67f0674fa91 100644
--- a/media/base/android/media_url_interceptor.h
+++ b/media/base/android/media_url_interceptor.h
@@ -27,8 +27,8 @@ class MEDIA_EXPORT MediaUrlInterceptor {
// - |size|: size in bytes of the media element.
virtual bool Intercept(const std::string& url,
int* fd,
- int64* offset,
- int64* size) const = 0;
+ int64_t* offset,
+ int64_t* size) const = 0;
};
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698