Chromium Code Reviews| Index: base/profiler/alternate_timer.h |
| =================================================================== |
| --- base/profiler/alternate_timer.h (revision 0) |
| +++ base/profiler/alternate_timer.h (revision 0) |
| @@ -0,0 +1,28 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// This is a glue file, which allows third party code to call into our profiler |
| +// without having to include most any functions from base. |
| + |
| + |
| +#ifndef BASE_PROFILER_ALTERNATE_TIMER_H_ |
| +#define BASE_PROFILER_ALTERNATE_TIMER_H_ |
| + |
| +namespace tracked_objects { |
| + |
| +// Provide type for an alternate timer function. |
| +typedef unsigned int NowFunction(); |
| + |
| +// Set an alternate timer function to replace the OS time function when |
| +// profiling. Typically this is called by an allocator that is providing a |
| +// function that indicates how much memory has been allocated on any given |
| +// thread. |
| +extern void SetAlternateTimeSource(NowFunction* now_function); |
| + |
| +// Gets the pointer to a function that was set SetAlternateTimeSource(). |
|
ramant (doing other things)
2012/02/15 18:33:46
nit: set SetAlternateTimeSource -> set in SetAlter
jar (doing other things)
2012/02/15 20:26:32
Done.
|
| +// Returns NULL if no set was done prior to calling GetAlternateTimeSource |
|
ramant (doing other things)
2012/02/15 18:33:46
nit: missing period.
jar (doing other things)
2012/02/15 20:26:32
Done.
|
| +extern NowFunction* GetAlternateTimeSource(); |
| +} // tracked_objects |
| + |
| +#endif // BASE_PROFILER_ALTERNATE_TIMER_H_ |