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

Unified Diff: media/base/media_log.cc

Issue 2712983004: Simplify/Cleanup MediaClient (Closed)
Patch Set: Little fixes Created 3 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.cc
diff --git a/media/base/media_log.cc b/media/base/media_log.cc
index 1f64a9ef1abcba605b35f9ba8749df8d11d08e1e..5b9c021ec3b6794649d9a3efe22ec09f9902e1b3 100644
--- a/media/base/media_log.cc
+++ b/media/base/media_log.cc
@@ -199,6 +199,10 @@ void MediaLog::RecordRapporWithSecurityOrigin(const std::string& metric) {
DVLOG(1) << "Default MediaLog doesn't support rappor reporting.";
}
+void MediaLog::RecordRapporWithURL(const std::string& metric, const GURL& url) {
+ DVLOG(1) << "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