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

Issue 17589014: Write a log list for uploaded WebRTC logs. (Closed)

Created:
7 years, 6 months ago by Henrik Grunell
Modified:
7 years, 5 months ago
CC:
chromium-reviews, feature-media-reviews_chromium.org
Visibility:
Public.

Description

Write a log list for uploaded WebRTC logs. CL for show a list of uploaded logs: https://chromiumcodereview.appspot.com/17063004/ BUG=254329 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=210312

Patch Set 1 #

Total comments: 22

Patch Set 2 : Code review. #

Total comments: 6

Patch Set 3 : Code review. #

Patch Set 4 : Nicer line limitation code. #

Total comments: 2

Patch Set 5 : Code review; added basic unit test #

Patch Set 6 : Close file + explicit ctor. #

Patch Set 7 : Some unit test changes. #

Total comments: 21

Patch Set 8 : Code review. #

Patch Set 9 : Rebase #

Patch Set 10 : Fixed error caused by using wrong read file function + a test assert change. #

Patch Set 11 : Using expect + return instead of a macro to get better fail output. #

Patch Set 12 : Using ReadFileToString and WriteFile instead of platform file. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+183 lines, -4 lines) Patch
M chrome/browser/media/webrtc_log_uploader.h View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +22 lines, -2 lines 0 comments Download
M chrome/browser/media/webrtc_log_uploader.cc View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +49 lines, -2 lines 0 comments Download
A chrome/browser/media/webrtc_log_uploader_unittest.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +110 lines, -0 lines 0 comments Download
M chrome/chrome_tests_unit.gypi View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +2 lines, -0 lines 0 comments Download

Messages

Total messages: 23 (0 generated)
Henrik Grunell
7 years, 6 months ago (2013-06-24 16:33:04 UTC) #1
tommi (sloooow) - chröme
https://codereview.chromium.org/17589014/diff/1/chrome/browser/media/webrtc_log_uploader.cc File chrome/browser/media/webrtc_log_uploader.cc (right): https://codereview.chromium.org/17589014/diff/1/chrome/browser/media/webrtc_log_uploader.cc#newcode52 chrome/browser/media/webrtc_log_uploader.cc:52: int response_code = source->GetResponseCode(); In general this code could ...
7 years, 6 months ago (2013-06-25 12:57:15 UTC) #2
Henrik Grunell
https://chromiumcodereview.appspot.com/17589014/diff/1/chrome/browser/media/webrtc_log_uploader.cc File chrome/browser/media/webrtc_log_uploader.cc (right): https://chromiumcodereview.appspot.com/17589014/diff/1/chrome/browser/media/webrtc_log_uploader.cc#newcode52 chrome/browser/media/webrtc_log_uploader.cc:52: int response_code = source->GetResponseCode(); On 2013/06/25 12:57:15, tommi wrote: ...
7 years, 6 months ago (2013-06-26 09:45:36 UTC) #3
tommi (sloooow) - chröme
https://chromiumcodereview.appspot.com/17589014/diff/1/chrome/browser/media/webrtc_log_uploader.cc File chrome/browser/media/webrtc_log_uploader.cc (right): https://chromiumcodereview.appspot.com/17589014/diff/1/chrome/browser/media/webrtc_log_uploader.cc#newcode81 chrome/browser/media/webrtc_log_uploader.cc:81: base::SplitStringAlongWhitespace(contents, &log_entries); On 2013/06/26 09:45:37, Henrik Grunell wrote: > ...
7 years, 5 months ago (2013-06-27 08:45:40 UTC) #4
Henrik Grunell
https://chromiumcodereview.appspot.com/17589014/diff/1/chrome/browser/media/webrtc_log_uploader.cc File chrome/browser/media/webrtc_log_uploader.cc (right): https://chromiumcodereview.appspot.com/17589014/diff/1/chrome/browser/media/webrtc_log_uploader.cc#newcode81 chrome/browser/media/webrtc_log_uploader.cc:81: base::SplitStringAlongWhitespace(contents, &log_entries); On 2013/06/27 08:45:40, tommi wrote: > On ...
7 years, 5 months ago (2013-06-27 11:56:21 UTC) #5
Henrik Grunell
Rewrote the line limitation code.
7 years, 5 months ago (2013-06-28 07:44:17 UTC) #6
tommi (sloooow) - chröme
I think we need a unit test for the class. At the very least the ...
7 years, 5 months ago (2013-06-28 11:00:05 UTC) #7
Henrik Grunell
Added unit test + some refactoring for that. Added Jochen as reviewer, please review chrome/browser/browser_process_impl.cc ...
7 years, 5 months ago (2013-06-28 14:12:23 UTC) #8
Henrik Grunell
Some unit test changes + rebase.
7 years, 5 months ago (2013-07-01 11:37:14 UTC) #9
jochen (gone - plz use gerrit)
https://chromiumcodereview.appspot.com/17589014/diff/32001/chrome/browser/browser_process_impl.cc File chrome/browser/browser_process_impl.cc (right): https://chromiumcodereview.appspot.com/17589014/diff/32001/chrome/browser/browser_process_impl.cc#newcode641 chrome/browser/browser_process_impl.cc:641: webrtc_log_uploader_.reset(new WebRtcLogUploader(empty_path)); nit. Doesn't WebRtcLogUploader(base::FilePath()) work?
7 years, 5 months ago (2013-07-01 11:46:26 UTC) #10
tommi (sloooow) - chröme
https://codereview.chromium.org/17589014/diff/32001/chrome/browser/browser_process_impl.cc File chrome/browser/browser_process_impl.cc (right): https://codereview.chromium.org/17589014/diff/32001/chrome/browser/browser_process_impl.cc#newcode641 chrome/browser/browser_process_impl.cc:641: webrtc_log_uploader_.reset(new WebRtcLogUploader(empty_path)); instead of requiring an empty path can ...
7 years, 5 months ago (2013-07-01 12:01:01 UTC) #11
Henrik Grunell
Jochen only a gypi file for you now. :) https://codereview.chromium.org/17589014/diff/32001/chrome/browser/browser_process_impl.cc File chrome/browser/browser_process_impl.cc (right): https://codereview.chromium.org/17589014/diff/32001/chrome/browser/browser_process_impl.cc#newcode641 chrome/browser/browser_process_impl.cc:641: ...
7 years, 5 months ago (2013-07-01 13:26:21 UTC) #12
jochen (gone - plz use gerrit)
On 2013/07/01 13:26:21, Henrik Grunell wrote: > Jochen only a gypi file for you now. ...
7 years, 5 months ago (2013-07-01 13:28:47 UTC) #13
tommi (sloooow) - chröme
lgtm
7 years, 5 months ago (2013-07-01 13:37:17 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/grunell@chromium.org/17589014/42001
7 years, 5 months ago (2013-07-01 13:39:59 UTC) #15
commit-bot: I haz the power
Retried try job too often on win_x64_rel for step(s) compile http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_x64_rel&number=21403
7 years, 5 months ago (2013-07-01 14:06:43 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/grunell@chromium.org/17589014/54002
7 years, 5 months ago (2013-07-01 14:19:30 UTC) #17
commit-bot: I haz the power
Step "update" is always a major failure. Look at the try server FAQ for more ...
7 years, 5 months ago (2013-07-01 14:28:40 UTC) #18
Henrik Grunell
PTAL again. - Fixed the win_rel and win7_aura bots error. Caused by using wrong read ...
7 years, 5 months ago (2013-07-05 06:48:16 UTC) #19
Henrik Grunell
New patch.
7 years, 5 months ago (2013-07-05 12:09:28 UTC) #20
tommi (sloooow) - chröme
lgtm
7 years, 5 months ago (2013-07-05 12:47:52 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/grunell@chromium.org/17589014/82001
7 years, 5 months ago (2013-07-05 12:55:03 UTC) #22
commit-bot: I haz the power
7 years, 5 months ago (2013-07-05 17:06:59 UTC) #23
Message was sent while issue was closed.
Change committed as 210312

Powered by Google App Engine
This is Rietveld 408576698