chromium/v8/src/heap/minor-gc-job.cc

// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/heap/minor-gc-job.h"

#include <memory>

#include "src/base/platform/time.h"
#include "src/execution/isolate.h"
#include "src/execution/vm-state-inl.h"
#include "src/flags/flags.h"
#include "src/heap/heap-inl.h"
#include "src/heap/heap.h"
#include "src/init/v8.h"
#include "src/tasks/cancelable-task.h"

namespace v8 {
namespace internal {

class MinorGCJob::Task : public CancelableTask {};

size_t MinorGCJob::YoungGenerationTaskTriggerSize(Heap* heap) {}

bool MinorGCJob::YoungGenerationSizeTaskTriggerReached(Heap* heap) {}

void MinorGCJob::ScheduleTask() {}

void MinorGCJob::CancelTaskIfScheduled() {}

void MinorGCJob::Task::RunInternal() {}

}  // namespace internal
}  // namespace v8