Index: base/profiler/stack_sampling_profiler.h |
diff --git a/base/profiler/stack_sampling_profiler.h b/base/profiler/stack_sampling_profiler.h |
index 8d7671e266365378c9587d1073d827d770c59170..44387868310f87ca3a6fde6b3914130f1c3af025 100644 |
--- a/base/profiler/stack_sampling_profiler.h |
+++ b/base/profiler/stack_sampling_profiler.h |
@@ -53,6 +53,8 @@ class BASE_EXPORT StackSamplingProfiler { |
// Module represents the module (DLL or exe) corresponding to a stack frame. |
struct BASE_EXPORT Module { |
Module(); |
+ Module(const void* base_address, const std::string& id, |
+ const FilePath& filename); |
~Module(); |
// Points to the base address of the module. |
@@ -72,6 +74,7 @@ class BASE_EXPORT StackSamplingProfiler { |
// Frame represents an individual sampled stack frame with module information. |
struct BASE_EXPORT Frame { |
Frame(); |
+ Frame(const void* instruction_pointer, int module_index); |
~Frame(); |
// The sampled instruction pointer within the function. |