chromium/gin/v8_foreground_task_runner_base.h

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef GIN_V8_FOREGROUND_TASK_RUNNER_BASE_H_
#define GIN_V8_FOREGROUND_TASK_RUNNER_BASE_H_

#include "v8/include/v8-platform.h"

#include "gin/gin_export.h"
#include "gin/public/v8_idle_task_runner.h"

namespace gin {

// Base class for the V8ForegroundTaskRunners to share the capability of
// enabling IdleTasks.
class V8ForegroundTaskRunnerBase : public v8::TaskRunner {};

}  // namespace gin

#endif  // GIN_V8_FOREGROUND_TASK_RUNNER_BASE_H_