OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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 CHROME_BROWSER_RENDERER_HOST_OFFLINE_RESOURCE_HANDLER_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_OFFLINE_RESOURCE_HANDLER_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/ref_counted.h" |
| 11 #include "chrome/browser/chromeos/offline/offline_load_page.h" |
| 12 #include "chrome/browser/renderer_host/resource_handler.h" |
| 13 |
| 14 class MessageLoop; |
| 15 class ResourceDispatcherHost; |
| 16 class URLRequest; |
| 17 |
| 18 // Used to show an offline interstitial page when the network is not available. |
| 19 class OfflineResourceHandler : public ResourceHandler, |
| 20 public chromeos::OfflineLoadPage::Delegate { |
| 21 public: |
| 22 OfflineResourceHandler(ResourceHandler* handler, |
| 23 int host_id, |
| 24 int render_view_id, |
| 25 ResourceDispatcherHost* rdh, |
| 26 URLRequest* request); |
| 27 ~OfflineResourceHandler() {} |
| 28 |
| 29 // ResourceHandler implementation: |
| 30 virtual bool OnUploadProgress(int request_id, uint64 position, uint64 size); |
| 31 virtual bool OnRequestRedirected(int request_id, const GURL& new_url, |
| 32 ResourceResponse* response, bool* defer); |
| 33 virtual bool OnResponseStarted(int request_id, ResourceResponse* response); |
| 34 virtual bool OnWillStart(int request_id, const GURL& url, bool* defer); |
| 35 virtual bool OnWillRead(int request_id, net::IOBuffer** buf, int* buf_size, |
| 36 int min_size); |
| 37 virtual bool OnReadCompleted(int request_id, int* bytes_read); |
| 38 virtual bool OnResponseCompleted(int request_id, |
| 39 const URLRequestStatus& status, |
| 40 const std::string& security_info); |
| 41 virtual void OnRequestClosed(); |
| 42 |
| 43 // chromeos::OfflineLoadPage::Delegate |
| 44 virtual void OnBlockingPageComplete(bool proceed); |
| 45 |
| 46 private: |
| 47 // Erease the state assocaited with a deferred load request. |
| 48 void ClearRequestInfo(); |
| 49 bool IsRemote(const GURL& url) const; |
| 50 |
| 51 // Resume the deferred load request. |
| 52 void Resume(); |
| 53 |
| 54 // Tells if chrome should show the offline page. |
| 55 bool ShouldShowOfflinePage(const GURL& url) const; |
| 56 |
| 57 // Shows the offline interstitinal page in UI thread. |
| 58 void ShowOfflinePage(); |
| 59 |
| 60 scoped_refptr<ResourceHandler> next_handler_; |
| 61 |
| 62 int process_host_id_; |
| 63 int render_view_id_; |
| 64 ResourceDispatcherHost* rdh_; |
| 65 URLRequest* request_; |
| 66 |
| 67 // The state for deferred load quest. |
| 68 int deferred_request_id_; |
| 69 GURL deferred_url_; |
| 70 |
| 71 DISALLOW_COPY_AND_ASSIGN(OfflineResourceHandler); |
| 72 }; |
| 73 |
| 74 #endif // CHROME_BROWSER_RENDERER_HOST_OFFLINE_RESOURCE_HANDLER_H_ |
OLD | NEW |