// Copyright 2013 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. #ifndef V8_LIBPLATFORM_TASK_QUEUE_H_ #define V8_LIBPLATFORM_TASK_QUEUE_H_ #include <memory> #include <queue> #include "include/libplatform/libplatform-export.h" #include "src/base/platform/mutex.h" #include "src/base/platform/semaphore.h" #include "testing/gtest/include/gtest/gtest_prod.h" // nogncheck namespace v8 { class Task; namespace platform { class V8_PLATFORM_EXPORT TaskQueue { … }; } // namespace platform } // namespace v8 #endif // V8_LIBPLATFORM_TASK_QUEUE_H_