// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "sample_executor.h" SampleExecutor::SampleExecutor() : … { … } SampleExecutor::~SampleExecutor() { … } Cronet_ExecutorPtr SampleExecutor::GetExecutor() { … } void SampleExecutor::ShutdownExecutor() { … } void SampleExecutor::RunTasksInQueue() { … } /* static */ void SampleExecutor::ThreadLoop(SampleExecutor* executor) { … } void SampleExecutor::Execute(Cronet_RunnablePtr runnable) { … } /* static */ void SampleExecutor::Execute(Cronet_ExecutorPtr self, Cronet_RunnablePtr runnable) { … }