diff --git third_party/blink/public/platform/web_url_loader.h third_party/blink/public/platform/web_url_loader.h
index 3894775930095..aef157bc50b79 100644
--- third_party/blink/public/platform/web_url_loader.h
+++ third_party/blink/public/platform/web_url_loader.h
@@ -152,12 +152,14 @@ class BLINK_PLATFORM_EXPORT WebURLLoader {
   void SetResourceRequestSenderForTesting(
       std::unique_ptr<WebResourceRequestSender> resource_request_sender);
 
+  // Cancels an asynchronous load.  This will appear as a load error to
+  // the client.
+  void Cancel();
+
  private:
   class Context;
   class RequestPeerImpl;
 
-  void Cancel();
-
   scoped_refptr<Context> context_;
 };