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

Unified Diff: chrome/browser/media/webrtc_log_uploader.h

Issue 264793017: Implements RTP header dumping. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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: chrome/browser/media/webrtc_log_uploader.h
diff --git a/chrome/browser/media/webrtc_log_uploader.h b/chrome/browser/media/webrtc_log_uploader.h
index 40d95547bf78a001dc88f6b36d3810394249ea10..3ff215282997ca7fa800284f4a4180f0fcf4a647 100644
--- a/chrome/browser/media/webrtc_log_uploader.h
+++ b/chrome/browser/media/webrtc_log_uploader.h
@@ -27,6 +27,13 @@ class URLFetcher;
typedef struct z_stream_s z_stream;
+struct WebRtcRtpDumpDescription {
+ WebRtcRtpDumpDescription(const std::string& name, const base::FilePath& path);
+
+ std::string name;
+ base::FilePath path;
+};
+
// Used when uploading is done to perform post-upload actions. |log_path| is
// also used pre-upload.
struct WebRtcLogUploadDoneData {
@@ -34,6 +41,7 @@ struct WebRtcLogUploadDoneData {
~WebRtcLogUploadDoneData();
base::FilePath log_path;
+ std::vector<WebRtcRtpDumpDescription> rtp_dumps;
WebRtcLoggingHandlerHost::UploadDoneCallback callback;
scoped_refptr<WebRtcLoggingHandlerHost> host;
std::string local_log_id;
@@ -99,12 +107,9 @@ class WebRtcLogUploader : public net::URLFetcherDelegate {
// to RFC 2046.
void SetupMultipart(std::string* post_data,
const std::vector<uint8>& compressed_log,
+ const std::vector<WebRtcRtpDumpDescription>& rtp_dumps,
const std::map<std::string, std::string>& meta_data);
- // Adds |compressed_log| to |post_data|.
- void AddLogData(std::string* post_data,
- const std::vector<uint8>& compressed_log);
-
void CompressLog(std::vector<uint8>* compressed_log,
uint8* input,
uint32 input_size);

Powered by Google App Engine
This is Rietveld 408576698