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

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

Issue 16580013: Changing WebRTC log filename to 'webrtc_log'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/webrtc_log_uploader.cc
diff --git a/chrome/browser/media/webrtc_log_uploader.cc b/chrome/browser/media/webrtc_log_uploader.cc
index 763253ac72c80640e1022ac371fb8fa36e929f90..fa852860e55cc3fec1d2a4ddac628af09657da2d 100644
--- a/chrome/browser/media/webrtc_log_uploader.cc
+++ b/chrome/browser/media/webrtc_log_uploader.cc
@@ -129,8 +129,8 @@ void WebRtcLogUploader::AddLogData(std::string* post_data,
post_data->append("--");
post_data->append(kMultipartBoundary);
post_data->append("\r\n");
- post_data->append("Content-Disposition: form-data; name=\"log\"");
- post_data->append("; filename=\"log.gz\"\r\n");
+ post_data->append("Content-Disposition: form-data; name=\"webrtc_log\"");
+ post_data->append("; filename=\"webrtc_log.gz\"\r\n");
post_data->append("Content-Type: application/gzip\r\n\r\n");
CompressLog(post_data, log_buffer, log_buffer_length);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698