#include "third_party/blink/renderer/platform/loader/fetch/url_loader/sync_load_context.h"
#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/task_environment.h"
#include "base/threading/thread.h"
#include "base/time/time.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/system/data_pipe_utils.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "services/network/test/test_url_loader_factory.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/platform/resource_load_info_notifier_wrapper.h"
#include "third_party/blink/renderer/platform/loader/fetch/url_loader/resource_request_sender.h"
#include "third_party/blink/renderer/platform/loader/fetch/url_loader/sync_load_response.h"
#include "third_party/blink/renderer/platform/wtf/shared_buffer.h"
namespace blink {
namespace {
class TestSharedURLLoaderFactory : public network::TestURLLoaderFactory,
public network::SharedURLLoaderFactory { … };
class MockPendingSharedURLLoaderFactory
: public network::PendingSharedURLLoaderFactory { … };
class MockResourceRequestSender : public ResourceRequestSender { … };
}
class SyncLoadContextTest : public testing::Test { … };
TEST_F(SyncLoadContextTest, StartAsyncWithWaitableEvent) { … }
TEST_F(SyncLoadContextTest, ResponseBodyViaDataPipe) { … }
}