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

Unified Diff: media/base/media_log_event.h

Issue 1041353002: media-internals: Differentiate error, info, and debug log messages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Attempt to fix android compile error Created 5 years, 9 months 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_event.h
diff --git a/media/base/media_log_event.h b/media/base/media_log_event.h
index ee21d001ab5809f2f24de0901c11354bde4a01b3..db687fbb176f57d9125277653175c0fb5c29d05e 100644
--- a/media/base/media_log_event.h
+++ b/media/base/media_log_event.h
@@ -82,10 +82,18 @@ struct MediaLogEvent {
// "buffer_end": <last buffered byte>.
BUFFERED_EXTENTS_CHANGED,
- // Errors reported by Media Source Extensions code.
- MEDIA_SOURCE_ERROR,
+ // Error log reported by media code such as details of an MSE parse error.
+ MEDIA_ERROR_LOG_ENTRY,
// params: "error": Error string describing the error detected.
+ // Informative log reported by media code.
+ MEDIA_INFO_LOG_ENTRY,
+ // params: "info": String with details of an informative log entry.
+
+ // Debug log reported by media code.
+ MEDIA_DEBUG_LOG_ENTRY,
+ // params: "debug": String with details of a debug log entry.
+
// A property has changed without any special event occurring.
PROPERTY_CHANGE,

Powered by Google App Engine
This is Rietveld 408576698