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

Side by Side Diff: media/cast/logging/logging_impl.h

Issue 136903003: cast: Wire upp logging to be sent over RTCP between receiver and sender. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 #ifndef MEDIA_CAST_LOGGING_LOGGING_IMPL_H_ 4 #ifndef MEDIA_CAST_LOGGING_LOGGING_IMPL_H_
5 #define MEDIA_CAST_LOGGING_LOGGING_IMPL_H_ 5 #define MEDIA_CAST_LOGGING_LOGGING_IMPL_H_
6 6
7 // Generic class that handles event logging for the cast library. 7 // Generic class that handles event logging for the cast library.
8 // Logging has three possible optional forms: 8 // Logging has three possible optional forms:
9 // 1. Raw data and stats accessible by the application. 9 // 1. Raw data and stats accessible by the application.
10 // 2. UMA stats. 10 // 2. UMA stats.
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 size_t size); 58 size_t size);
59 59
60 void InsertGenericEvent(const base::TimeTicks& time_of_event, 60 void InsertGenericEvent(const base::TimeTicks& time_of_event,
61 CastLoggingEvent event, 61 CastLoggingEvent event,
62 int value); 62 int value);
63 63
64 // Get raw data. 64 // Get raw data.
65 FrameRawMap GetFrameRawData(); 65 FrameRawMap GetFrameRawData();
66 PacketRawMap GetPacketRawData(); 66 PacketRawMap GetPacketRawData();
67 GenericRawMap GetGenericRawData(); 67 GenericRawMap GetGenericRawData();
68 AudioRtcpRawMap GetAudioRtcpRawData();
69 VideoRtcpRawMap GetVideoRtcpRawData();
70
68 // Get stats only (computed when called). Triggers UMA stats when enabled. 71 // Get stats only (computed when called). Triggers UMA stats when enabled.
69 const FrameStatsMap* GetFrameStatsData(const base::TimeTicks& now); 72 const FrameStatsMap* GetFrameStatsData(const base::TimeTicks& now);
70 const PacketStatsMap* GetPacketStatsData(const base::TimeTicks& now); 73 const PacketStatsMap* GetPacketStatsData(const base::TimeTicks& now);
71 const GenericStatsMap* GetGenericStatsData(); 74 const GenericStatsMap* GetGenericStatsData();
72 75
73 void Reset(); 76 void Reset();
74 77
75 private: 78 private:
76 scoped_refptr<base::TaskRunner> main_thread_proxy_; 79 scoped_refptr<base::TaskRunner> main_thread_proxy_;
77 const CastLoggingConfig config_; 80 const CastLoggingConfig config_;
78 LoggingRaw raw_; 81 LoggingRaw raw_;
79 LoggingStats stats_; 82 LoggingStats stats_;
80 83
81 DISALLOW_COPY_AND_ASSIGN(LoggingImpl); 84 DISALLOW_COPY_AND_ASSIGN(LoggingImpl);
82 }; 85 };
83 86
84 } // namespace cast 87 } // namespace cast
85 } // namespace media 88 } // namespace media
86 89
87 #endif // MEDIA_CAST_LOGGING_LOGGING_IMPL_H_ 90 #endif // MEDIA_CAST_LOGGING_LOGGING_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698