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

Unified Diff: media/base/media_log.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/media_log.h
diff --git a/media/base/media_log.h b/media/base/media_log.h
index 1e4b9464dd761a6deecf1616eaeabcec3ed6d38b..24fabb2e1d818ce3eee17efe04b8f23309cf0e71 100644
--- a/media/base/media_log.h
+++ b/media/base/media_log.h
@@ -57,8 +57,9 @@ class MEDIA_EXPORT MediaLog : public base::RefCountedThreadSafe<MediaLog> {
scoped_ptr<MediaLogEvent> CreatePipelineErrorEvent(PipelineStatus error);
scoped_ptr<MediaLogEvent> CreateVideoSizeSetEvent(
size_t width, size_t height);
- scoped_ptr<MediaLogEvent> CreateBufferedExtentsChangedEvent(
- int64 start, int64 current, int64 end);
+ scoped_ptr<MediaLogEvent> CreateBufferedExtentsChangedEvent(int64_t start,
+ int64_t current,
+ int64_t end);
// Report a log message at the specified log level.
void AddLogEvent(MediaLogLevel level, const std::string& message);
@@ -76,7 +77,7 @@ class MEDIA_EXPORT MediaLog : public base::RefCountedThreadSafe<MediaLog> {
private:
// A unique (to this process) id for this MediaLog.
- int32 id_;
+ int32_t id_;
DISALLOW_COPY_AND_ASSIGN(MediaLog);
};
« no previous file with comments | « media/base/media_keys.h ('k') | media/base/media_log.cc » ('j') | media/cdm/stub/stub_cdm.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698