#include "components/safe_browsing/content/renderer/renderer_url_loader_throttle.h"
#include <string_view>
#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "components/safe_browsing/content/common/safe_browsing.mojom.h"
#include "components/safe_browsing/core/common/features.h"
#include "components/safe_browsing/core/common/safe_browsing_url_checker.mojom.h"
#include "ipc/ipc_message.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "services/network/public/cpp/resource_request.h"
#include "services/network/public/mojom/fetch_api.mojom-shared.h"
#include "services/network/public/mojom/url_response_head.mojom.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace safe_browsing {
class FakeSafeBrowsing : public mojom::SafeBrowsing { … };
class MockThrottleDelegate : public blink::URLLoaderThrottle::Delegate { … };
class SBRendererUrlLoaderThrottleTest : public ::testing::Test { … };
TEST_F(SBRendererUrlLoaderThrottleTest, DoesNotDeferHttpsImageUrl) { … }
TEST_F(SBRendererUrlLoaderThrottleTest, DoesNotDeferHttpsScriptUrl) { … }
TEST_F(SBRendererUrlLoaderThrottleTest, DoesNotDeferChromeUrl) { … }
TEST_F(SBRendererUrlLoaderThrottleTest, DoesNotDeferIframeUrl) { … }
}