OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_HANDLER_H_ |
| 6 #define CONTENT_BROWSER_LOADER_NAVIGATION_RESOURCE_HANDLER_H_ |
| 7 |
| 8 #include "base/macros.h" |
| 9 #include "content/browser/loader/resource_handler.h" |
| 10 #include "content/browser/loader/stream_writer.h" |
| 11 |
| 12 namespace content { |
| 13 |
| 14 class NavigationURLLoaderImplCore; |
| 15 |
| 16 // PlzNavigate: The leaf ResourceHandler used with NavigationURLLoaderImplCore. |
| 17 class NavigationResourceHandler : public ResourceHandler { |
| 18 public: |
| 19 NavigationResourceHandler(net::URLRequest* request, |
| 20 NavigationURLLoaderImplCore* core); |
| 21 ~NavigationResourceHandler() override; |
| 22 |
| 23 // Called by the loader the cancel the request. |
| 24 void Cancel(); |
| 25 |
| 26 // Called to the loader to resume a paused redirect. |
| 27 void FollowRedirect(); |
| 28 |
| 29 // ResourceHandler implementation. |
| 30 void SetController(ResourceController* controller) override; |
| 31 bool OnUploadProgress(uint64 position, uint64 size) override; |
| 32 bool OnRequestRedirected(const net::RedirectInfo& redirect_info, |
| 33 ResourceResponse* response, |
| 34 bool* defer) override; |
| 35 bool OnResponseStarted(ResourceResponse* response, bool* defer) override; |
| 36 bool OnWillStart(const GURL& url, bool* defer) override; |
| 37 bool OnBeforeNetworkStart(const GURL& url, bool* defer) override; |
| 38 bool OnWillRead(scoped_refptr<net::IOBuffer>* buf, |
| 39 int* buf_size, |
| 40 int min_size) override; |
| 41 bool OnReadCompleted(int bytes_read, bool* defer) override; |
| 42 void OnResponseCompleted(const net::URLRequestStatus& status, |
| 43 const std::string& security_info, |
| 44 bool* defer) override; |
| 45 void OnDataDownloaded(int bytes_downloaded) override; |
| 46 |
| 47 private: |
| 48 // Clears |core_| and its reference to the resource handler. After calling |
| 49 // this, the lifetime of the request is no longer tied to |core_|. |
| 50 void DetachFromCore(); |
| 51 |
| 52 NavigationURLLoaderImplCore* core_; |
| 53 StreamWriter writer_; |
| 54 |
| 55 DISALLOW_COPY_AND_ASSIGN(NavigationResourceHandler); |
| 56 }; |
| 57 |
| 58 } // namespace content |
| 59 |
| 60 #endif // CONTENT_BROWSER_LOADER_CERTIFICATE_RESOURCE_HANDLER_H_ |
OLD | NEW |