Index: src/profiler/cpu-profiler.h |
diff --git a/src/profiler/cpu-profiler.h b/src/profiler/cpu-profiler.h |
index 4261c367e0ed42768205f3cd0d5ebc0c6676dca4..ed1e15fb32db5d9740385b0bf19ccf2458889b6a 100644 |
--- a/src/profiler/cpu-profiler.h |
+++ b/src/profiler/cpu-profiler.h |
@@ -10,9 +10,9 @@ |
#include "src/base/atomicops.h" |
#include "src/base/platform/time.h" |
#include "src/compiler.h" |
-#include "src/libsampler/v8-sampler.h" |
#include "src/locked-queue.h" |
#include "src/profiler/circular-queue.h" |
+#include "src/profiler/sampler.h" |
#include "src/profiler/tick-sample.h" |
namespace v8 { |
@@ -128,7 +128,7 @@ |
class ProfilerEventsProcessor : public base::Thread { |
public: |
ProfilerEventsProcessor(ProfileGenerator* generator, |
- sampler::Sampler* sampler, |
+ Sampler* sampler, |
base::TimeDelta period); |
virtual ~ProfilerEventsProcessor(); |
@@ -166,7 +166,7 @@ |
SampleProcessingResult ProcessOneSample(); |
ProfileGenerator* generator_; |
- sampler::Sampler* sampler_; |
+ Sampler* sampler_; |
base::Atomic32 running_; |
const base::TimeDelta period_; // Samples & code events processing period. |
LockedQueue<CodeEventsContainer> events_buffer_; |