Chromium Code Reviews| Index: base/message_loop.h |
| diff --git a/base/message_loop.h b/base/message_loop.h |
| index 601120fe99aa8d211348d88bec4bfd272e442cc2..260ea699b095fadf25e28f6a266d5b678dd5e5ee 100644 |
| --- a/base/message_loop.h |
| +++ b/base/message_loop.h |
| @@ -430,14 +430,14 @@ class BASE_EXPORT MessageLoop : public base::MessagePump::Delegate { |
| // The time when the task should be run. |
| base::TimeTicks delayed_run_time; |
| + // The site this PendingTask was posted from. |
| + tracked_objects::Location posted_from; |
|
joth
2011/09/15 10:38:09
I managed to avoid this one by using post_births->
jbates
2011/09/15 16:48:33
Are we talking about a memory tradeoff? I actually
|
| + |
| // Secondary sort key for run time. |
| int sequence_num; |
| // OK to dispatch from a nested loop. |
| bool nestable; |
| - |
| - // The site this PendingTask was posted from. |
| - const void* birth_program_counter; |
| }; |
| class TaskQueue : public std::queue<PendingTask> { |