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

Unified Diff: media/base/android/media_resource_getter.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_resource_getter.h
diff --git a/media/base/android/media_resource_getter.h b/media/base/android/media_resource_getter.h
index 19560ed538b46f10648fe47aa3931924beb9a24b..a0d1bb40c5651ed9a826a90ee49f2ada5bebd1aa 100644
--- a/media/base/android/media_resource_getter.h
+++ b/media/base/android/media_resource_getter.h
@@ -60,11 +60,10 @@ class MEDIA_EXPORT MediaResourceGetter {
// Extracts the metadata from a file descriptor. Once completed, the
// provided callback function will be run.
- virtual void ExtractMediaMetadata(
- const int fd,
- const int64 offset,
- const int64 size,
- const ExtractMediaMetadataCB& callback) = 0;
+ virtual void ExtractMediaMetadata(const int fd,
+ const int64_t offset,
+ const int64_t size,
+ const ExtractMediaMetadataCB& callback) = 0;
};
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698