| Index: ios/web/webui/url_fetcher_block_adapter.h
|
| diff --git a/ios/web/webui/url_fetcher_block_adapter.h b/ios/web/webui/url_fetcher_block_adapter.h
|
| index 1e2f055d9a7b78d6bf79b3e40e49591c8f9fb9e8..095240b404dd253ae837b33680511df6f46eddda 100644
|
| --- a/ios/web/webui/url_fetcher_block_adapter.h
|
| +++ b/ios/web/webui/url_fetcher_block_adapter.h
|
| @@ -28,15 +28,16 @@ typedef void (^URLFetcherBlockAdapterCompletion)(NSData*,
|
| // Class to manage retrieval of WebUI resources.
|
| class URLFetcherBlockAdapter : public net::URLFetcherDelegate {
|
| public:
|
| - // Create URLFetcherBlockAdapter for resource at |url| with |request_context|.
|
| + // Creates URLFetcherBlockAdapter for resource at |url| with
|
| + // |request_context|.
|
| // |completion_handler| is called with results of the fetch.
|
| URLFetcherBlockAdapter(
|
| const GURL& url,
|
| net::URLRequestContextGetter* request_context,
|
| web::URLFetcherBlockAdapterCompletion completion_handler);
|
| ~URLFetcherBlockAdapter() override;
|
| - // Start the fetch.
|
| - void Start();
|
| + // Starts the fetch.
|
| + virtual void Start();
|
|
|
| protected:
|
| // net::URLFetcherDelegate implementation.
|
|
|