| Index: src/cpu-profiler.cc
|
| ===================================================================
|
| --- src/cpu-profiler.cc (revision 10367)
|
| +++ src/cpu-profiler.cc (working copy)
|
| @@ -493,7 +493,7 @@
|
| NoBarrier_Store(&is_profiling_, true);
|
| processor_->Start();
|
| // Enumerate stuff we already have in the heap.
|
| - if (isolate->heap()->HasBeenSetup()) {
|
| + if (isolate->heap()->HasBeenSetUp()) {
|
| if (!FLAG_prof_browser_mode) {
|
| bool saved_log_code_flag = FLAG_log_code;
|
| FLAG_log_code = true;
|
| @@ -562,7 +562,7 @@
|
| }
|
|
|
|
|
| -void CpuProfiler::Setup() {
|
| +void CpuProfiler::SetUp() {
|
| Isolate* isolate = Isolate::Current();
|
| if (isolate->cpu_profiler() == NULL) {
|
| isolate->set_cpu_profiler(new CpuProfiler());
|
|
|