summaryrefslogtreecommitdiffstats
path: root/chrome/browser/task_manager/task_manager.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-03 00:17:47 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-03 00:17:47 +0000
commit3b490c88625d5468075fa68e711c5a36103c0fcb (patch)
tree59df2ee9748bc675f6e5339aea19a2429a658f11 /chrome/browser/task_manager/task_manager.h
parent2f9b4ff9c8d3de972bcc3eb8e36ec427a9d18f9b (diff)
downloadchromium_src-3b490c88625d5468075fa68e711c5a36103c0fcb.zip
chromium_src-3b490c88625d5468075fa68e711c5a36103c0fcb.tar.gz
chromium_src-3b490c88625d5468075fa68e711c5a36103c0fcb.tar.bz2
Replace the GetAssociatedRenderView call with GetAssociatedRenderFrame in task manager code.
BUG=304341 R=nasko@chromium.org Review URL: https://codereview.chromium.org/123503004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242844 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/task_manager/task_manager.h')
-rw-r--r--chrome/browser/task_manager/task_manager.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/task_manager/task_manager.h b/chrome/browser/task_manager/task_manager.h
index f885c81..c5a1017 100644
--- a/chrome/browser/task_manager/task_manager.h
+++ b/chrome/browser/task_manager/task_manager.h
@@ -429,22 +429,22 @@ class TaskManagerModel : public base::RefCountedThreadSafe<TaskManagerModel> {
// This struct is used to exchange information between the io and ui threads.
struct BytesReadParam {
BytesReadParam(int origin_pid,
- int render_process_host_child_id,
- int routing_id,
+ int child_id,
+ int route_id,
int byte_count)
: origin_pid(origin_pid),
- render_process_host_child_id(render_process_host_child_id),
- routing_id(routing_id),
+ child_id(child_id),
+ route_id(route_id),
byte_count(byte_count) {}
// The process ID that triggered the request. For plugin requests this
// will differ from the renderer process ID.
int origin_pid;
- // The child ID of the RenderProcessHost this request was routed through.
- int render_process_host_child_id;
+ // The child ID of the process this request was routed through.
+ int child_id;
- int routing_id;
+ int route_id;
int byte_count;
};