Chromium Code Reviews| Index: base/tracked_objects.h |
| diff --git a/base/tracked_objects.h b/base/tracked_objects.h |
| index 60444080c16255ecf4cdd00e925c4ffd5140a5fc..a5c51e493c8629f5ae2ce0cfc037660a35780163 100644 |
| --- a/base/tracked_objects.h |
| +++ b/base/tracked_objects.h |
| @@ -11,10 +11,12 @@ |
| #include <vector> |
| #include "base/base_export.h" |
| +#include "base/location.h" |
| +#include "base/time.h" |
| #include "base/synchronization/lock.h" |
| -#include "base/tracked.h" |
| #include "base/threading/thread_local_storage.h" |
| +// TODO(ajwong): Fix this comment to remove references to Tracked. |
|
willchan no longer on Chromium
2011/09/13 05:06:56
You gonna do this?
awong
2011/09/13 19:39:04
Yep...sorry...apparently uploaded a stale CL. :(
|
| // TrackedObjects provides a database of stats about objects (generally Tasks) |
| // that are tracked. Tracking means their birth, death, duration, birth thread, |
| // death thread, and birth place are recorded. This data is carefully spread |
| @@ -147,9 +149,8 @@ |
| // are 64bit quantities, and are not atomicly accessed (reset or incremented |
| // etc.). For basic profiling, this will work "most of the time," and should be |
| // sufficient... but storing away DataCollections is the "right way" to do this. |
| -// |
| -class MessageLoop; |
| +class MessageLoop; |
| namespace tracked_objects { |