Index: media/base/media_log.h |
diff --git a/media/base/media_log.h b/media/base/media_log.h |
index 191de33b564a9211f766ee0026554e56578419c7..1d25c0973a5dfc865712e1d7fe3c075e4cba6b2a 100644 |
--- a/media/base/media_log.h |
+++ b/media/base/media_log.h |
@@ -68,6 +68,12 @@ class MEDIA_EXPORT MediaLog : public base::RefCountedThreadSafe<MediaLog> { |
scoped_ptr<MediaLogEvent> CreateMediaSourceErrorEvent( |
const std::string& error); |
+ // Report a property change without an accompanying event. |
+ void SetStringProperty(const char* key, const std::string& value); |
+ void SetIntegerProperty(const char* key, int value); |
+ void SetDoubleProperty(const char* key, double value); |
+ void SetBooleanProperty(const char* key, bool value); |
+ |
protected: |
friend class base::RefCountedThreadSafe<MediaLog>; |
virtual ~MediaLog(); |