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

Unified Diff: media/base/media_log.cc

Issue 2064083002: media: Add Rappor reporting in MediaLog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more fixes Created 4 years, 6 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.cc
diff --git a/media/base/media_log.cc b/media/base/media_log.cc
index ee3c99cce23ea96cd1fd7814db676f6b296788b7..546eb45026940fd01703e23dc0d277240538e7b7 100644
--- a/media/base/media_log.cc
+++ b/media/base/media_log.cc
@@ -154,6 +154,10 @@ std::string MediaLog::GetLastErrorMessage() {
return "";
}
+void MediaLog::RecordRapporWithSecurityOrigin(const std::string& metric) {
+ NOTIMPLEMENTED() << "Default MediaLog doesn't support rappor reporting.";
+}
+
std::unique_ptr<MediaLogEvent> MediaLog::CreateEvent(MediaLogEvent::Type type) {
std::unique_ptr<MediaLogEvent> event(new MediaLogEvent);
event->id = id_;

Powered by Google App Engine
This is Rietveld 408576698