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

Issue 8413009: Changes to upload tracked_objects data from all renderer (Closed)

Created:
9 years, 1 month ago by ramant (doing other things)
Modified:
9 years, 1 month ago
CC:
chromium-reviews, darin-cc_chromium.org, brettw-cc_chromium.org, eroman
Visibility:
Public.

Description

Changes to upload tracked_objects data from all renderer processes to browser process. Added the following messages to render_messages. ChromeViewMsg_GetRendererTrackedData - Asks the renderer to send back tracked data (ThreadData in tracked_objects). ChromeViewMsg_SetTrackingStatus - Asks the renderer to set the tracking status. ChromeViewHostMsg_RendererTrackedData - render's Send back tracked data (ThreadData in tracked_objects) as a string. ChromeViewHostMsg_IsTrackingEnabled - Asks Browser process to set the current tracking status from browser in the render. BUG=101933 R=jar TEST=browser tests Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=108770

Patch Set 1 #

Patch Set 2 : '' #

Patch Set 3 : '' #

Patch Set 4 : '' #

Patch Set 5 : '' #

Total comments: 42

Patch Set 6 : '' #

Patch Set 7 : '' #

Patch Set 8 : '' #

Patch Set 9 : '' #

Patch Set 10 : '' #

Patch Set 11 : '' #

Patch Set 12 : '' #

Patch Set 13 : '' #

Total comments: 26

Patch Set 14 : '' #

Patch Set 15 : '' #

Patch Set 16 : '' #

Patch Set 17 : '' #

Patch Set 18 : '' #

Patch Set 19 : '' #

Patch Set 20 : '' #

Patch Set 21 : '' #

Patch Set 22 : '' #

Patch Set 23 : '' #

Patch Set 24 : '' #

Total comments: 4

Patch Set 25 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+649 lines, -4 lines) Patch
M chrome/browser/chrome_browser_main.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +6 lines, -0 lines 0 comments Download
M chrome/browser/chrome_browser_main.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +2 lines, -0 lines 0 comments Download
A chrome/browser/metrics/tracking_synchronizer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +184 lines, -0 lines 0 comments Download
A chrome/browser/metrics/tracking_synchronizer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +271 lines, -0 lines 0 comments Download
M chrome/browser/renderer_host/chrome_render_message_filter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/renderer_host/chrome_render_message_filter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 4 chunks +19 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/tracking_ui.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +14 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/tracking_ui.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 4 chunks +21 lines, -4 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/chrome_renderer.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/common/render_messages.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +18 lines, -0 lines 0 comments Download
M chrome/renderer/chrome_content_renderer_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +2 lines, -0 lines 0 comments Download
M chrome/renderer/chrome_content_renderer_client.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 3 chunks +3 lines, -0 lines 0 comments Download
A chrome/renderer/renderer_tracking.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +40 lines, -0 lines 0 comments Download
A chrome/renderer/renderer_tracking.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +62 lines, -0 lines 0 comments Download

Messages

Total messages: 12 (0 generated)
ramant (doing other things)
Hi Jim, Would appreciate if you could take a look at this CL to get ...
9 years, 1 month ago (2011-10-28 21:55:14 UTC) #1
jar (doing other things)
You asked for some comments... so here they are. I've pulled all the names off ...
9 years, 1 month ago (2011-10-30 08:04:19 UTC) #2
ramant (doing other things)
Hi Jim, Made all the changes you had suggested. Would appreciate if you could take ...
9 years, 1 month ago (2011-11-01 00:52:15 UTC) #3
jar (doing other things)
Here are some questions and comments. http://codereview.chromium.org/8413009/diff/22021/chrome/browser/metrics/tracking_synchronizer.cc File chrome/browser/metrics/tracking_synchronizer.cc (right): http://codereview.chromium.org/8413009/diff/22021/chrome/browser/metrics/tracking_synchronizer.cc#newcode30 chrome/browser/metrics/tracking_synchronizer.cc:30: : last_used_sequence_number_(kNeverUsableSequenceNumber) { ...
9 years, 1 month ago (2011-11-03 06:23:15 UTC) #4
ramant (doing other things)
Hi Jim, Made all the changes you have suggested. Will add the support for other ...
9 years, 1 month ago (2011-11-03 21:51:39 UTC) #5
ramant (doing other things)
Hi Jim and Eric, Integrated the changes into Eric's code. Verified tracking_data is being uploaded ...
9 years, 1 month ago (2011-11-04 03:49:32 UTC) #6
jar (doing other things)
A nit and a small questions, and otherwise it looks great. http://codereview.chromium.org/8413009/diff/44054/chrome/browser/metrics/tracking_synchronizer.cc File chrome/browser/metrics/tracking_synchronizer.cc (right): ...
9 years, 1 month ago (2011-11-04 21:38:21 UTC) #7
ramant (doing other things)
thanks Jim for your comments. Made the changes you had suggested. -raman http://codereview.chromium.org/8413009/diff/44054/chrome/browser/metrics/tracking_synchronizer.cc File chrome/browser/metrics/tracking_synchronizer.cc ...
9 years, 1 month ago (2011-11-04 22:01:38 UTC) #8
jar (doing other things)
lgtm
9 years, 1 month ago (2011-11-04 23:37:39 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rtenneti@chromium.org/8413009/52001
9 years, 1 month ago (2011-11-04 23:38:12 UTC) #10
commit-bot: I haz the power
Try job failure for 8413009-52001 (retry) on win_rel for step "chrome_frame_net_tests". It's a second try, ...
9 years, 1 month ago (2011-11-05 01:37:39 UTC) #11
commit-bot: I haz the power
9 years, 1 month ago (2011-11-05 02:04:53 UTC) #12

Powered by Google App Engine
This is Rietveld 408576698