1diff --git third_party/blink/public/platform/web_url_loader.h third_party/blink/public/platform/web_url_loader.h 2index 3894775930095..aef157bc50b79 100644 3--- third_party/blink/public/platform/web_url_loader.h 4+++ third_party/blink/public/platform/web_url_loader.h 5@@ -152,12 +152,14 @@ class BLINK_PLATFORM_EXPORT WebURLLoader { 6 void SetResourceRequestSenderForTesting( 7 std::unique_ptr<WebResourceRequestSender> resource_request_sender); 8 9+ // Cancels an asynchronous load. This will appear as a load error to 10+ // the client. 11+ void Cancel(); 12+ 13 private: 14 class Context; 15 class RequestPeerImpl; 16 17- void Cancel(); 18- 19 scoped_refptr<Context> context_; 20 }; 21 22