File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,12 @@ void BackgroundTaskRunner::PostTask(std::unique_ptr<Task> task) {
3838}
3939
4040void BackgroundTaskRunner::PostIdleTask (std::unique_ptr<v8::IdleTask> task) {
41- CHECK ( false && " idle tasks not enabled " );
41+ UNREACHABLE ( );
4242}
4343
4444void BackgroundTaskRunner::PostDelayedTask (std::unique_ptr<v8::Task> task,
4545 double delay_in_seconds) {
46- // It's unclear whether this is required at all for background tasks.
47- PostTask (std::move (task));
46+ UNREACHABLE ();
4847}
4948
5049void BackgroundTaskRunner::BlockingDrain () {
@@ -77,7 +76,7 @@ void PerIsolatePlatformData::FlushTasks(uv_async_t* handle) {
7776}
7877
7978void PerIsolatePlatformData::PostIdleTask (std::unique_ptr<v8::IdleTask> task) {
80- CHECK ( false && " idle tasks not enabled " );
79+ UNREACHABLE ( );
8180}
8281
8382void PerIsolatePlatformData::PostTask (std::unique_ptr<Task> task) {
You can’t perform that action at this time.
0 commit comments