Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_PUBLIC_CHILD_REQUEST_PEER_H_ | 5 #ifndef CONTENT_PUBLIC_CHILD_REQUEST_PEER_H_ |
| 6 #define CONTENT_PUBLIC_CHILD_REQUEST_PEER_H_ | 6 #define CONTENT_PUBLIC_CHILD_REQUEST_PEER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/scoped_ptr.h" | |
| 11 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 12 | 13 |
| 13 class GURL; | 14 class GURL; |
| 14 | 15 |
| 15 namespace base { | 16 namespace base { |
| 16 class TimeTicks; | 17 class TimeTicks; |
| 17 } | 18 } |
| 18 | 19 |
| 19 namespace net { | 20 namespace net { |
| 20 struct RedirectInfo; | 21 struct RedirectInfo; |
| 21 } | 22 } |
| 22 | 23 |
| 23 namespace content { | 24 namespace content { |
| 24 | 25 |
| 25 struct ResourceResponseInfo; | 26 struct ResourceResponseInfo; |
| 26 | 27 |
| 27 // This is implemented by our custom resource loader within content. The Peer | 28 // This is implemented by our custom resource loader within content. The Peer |
| 28 // and it's bridge should have identical lifetimes as they represent each end of | 29 // and it's bridge should have identical lifetimes as they represent each end of |
| 29 // a communication channel. | 30 // a communication channel. |
| 30 // | 31 // |
| 31 // These callbacks mirror net::URLRequest::Delegate and the order and | 32 // These callbacks mirror net::URLRequest::Delegate and the order and |
| 32 // conditions in which they will be called are identical. See url_request.h | 33 // conditions in which they will be called are identical. See url_request.h |
| 33 // for more information. | 34 // for more information. |
| 34 class CONTENT_EXPORT RequestPeer { | 35 class CONTENT_EXPORT RequestPeer { |
| 35 public: | 36 public: |
| 37 // This class represents data gotten from the Browser process. Each data | |
| 38 // consists of |payload|, |length| and |encoded_length|. The payload is | |
| 39 // valid only when the data instance is valid. | |
| 40 class ReceivedData { | |
| 41 public: | |
| 42 virtual ~ReceivedData() {} | |
| 43 virtual const char* payload() const = 0; | |
| 44 virtual int length() const = 0; | |
| 45 // The encoded_data_length is the length of the encoded data transferred | |
|
tyoshino (SeeGerritForStatus)
2015/04/27 05:20:15
encoded_length
yhirano
2015/04/27 05:29:38
Done.
| |
| 46 // over the network, which could be different from data length (e.g. for | |
| 47 // gzipped content). | |
| 48 virtual int encoded_length() const = 0; | |
| 49 }; | |
| 50 | |
| 36 // Called as upload progress is made. | 51 // Called as upload progress is made. |
| 37 // note: only for requests with upload progress enabled. | 52 // note: only for requests with upload progress enabled. |
| 38 virtual void OnUploadProgress(uint64 position, uint64 size) = 0; | 53 virtual void OnUploadProgress(uint64 position, uint64 size) = 0; |
| 39 | 54 |
| 40 // Called when a redirect occurs. The implementation may return false to | 55 // Called when a redirect occurs. The implementation may return false to |
| 41 // suppress the redirect. The ResourceResponseInfo provides information about | 56 // suppress the redirect. The ResourceResponseInfo provides information about |
| 42 // the redirect response and the RedirectInfo includes information about the | 57 // the redirect response and the RedirectInfo includes information about the |
| 43 // request to be made if the method returns true. | 58 // request to be made if the method returns true. |
| 44 virtual bool OnReceivedRedirect(const net::RedirectInfo& redirect_info, | 59 virtual bool OnReceivedRedirect(const net::RedirectInfo& redirect_info, |
| 45 const ResourceResponseInfo& info) = 0; | 60 const ResourceResponseInfo& info) = 0; |
| 46 | 61 |
| 47 // Called when response headers are available (after all redirects have | 62 // Called when response headers are available (after all redirects have |
| 48 // been followed). | 63 // been followed). |
| 49 virtual void OnReceivedResponse(const ResourceResponseInfo& info) = 0; | 64 virtual void OnReceivedResponse(const ResourceResponseInfo& info) = 0; |
| 50 | 65 |
| 51 // Called when a chunk of response data is downloaded. This method may be | 66 // Called when a chunk of response data is downloaded. This method may be |
| 52 // called multiple times or not at all if an error occurs. This method is | 67 // called multiple times or not at all if an error occurs. This method is |
| 53 // only called if RequestInfo::download_to_file was set to true, and in | 68 // only called if RequestInfo::download_to_file was set to true, and in |
| 54 // that case, OnReceivedData will not be called. | 69 // that case, OnReceivedData will not be called. |
| 55 // The encoded_data_length is the length of the encoded data transferred | 70 // The encoded_data_length is the length of the encoded data transferred |
| 56 // over the network, which could be different from data length (e.g. for | 71 // over the network, which could be different from data length (e.g. for |
| 57 // gzipped content). | 72 // gzipped content). |
| 58 virtual void OnDownloadedData(int len, int encoded_data_length) = 0; | 73 virtual void OnDownloadedData(int len, int encoded_data_length) = 0; |
| 59 | 74 |
| 60 // Called when a chunk of response data is available. This method may | 75 // Called when a chunk of response data is available. This method may |
| 61 // be called multiple times or not at all if an error occurs. | 76 // be called multiple times or not at all if an error occurs. |
| 62 // The encoded_data_length is the length of the encoded data transferred | 77 virtual void OnReceivedData(scoped_ptr<ReceivedData> data) = 0; |
| 63 // over the network, which could be different from data length (e.g. for | |
| 64 // gzipped content). | |
| 65 virtual void OnReceivedData(const char* data, | |
| 66 int data_length, | |
| 67 int encoded_data_length) = 0; | |
| 68 | 78 |
| 69 // Called when metadata generated by the renderer is retrieved from the | 79 // Called when metadata generated by the renderer is retrieved from the |
| 70 // cache. This method may be called zero or one times. | 80 // cache. This method may be called zero or one times. |
| 71 virtual void OnReceivedCachedMetadata(const char* data, int len) {} | 81 virtual void OnReceivedCachedMetadata(const char* data, int len) {} |
| 72 | 82 |
| 73 // Called when the response is complete. This method signals completion of | 83 // Called when the response is complete. This method signals completion of |
| 74 // the resource load. | 84 // the resource load. |
| 75 virtual void OnCompletedRequest(int error_code, | 85 virtual void OnCompletedRequest(int error_code, |
| 76 bool was_ignored_by_handler, | 86 bool was_ignored_by_handler, |
| 77 bool stale_copy_in_cache, | 87 bool stale_copy_in_cache, |
| 78 const std::string& security_info, | 88 const std::string& security_info, |
| 79 const base::TimeTicks& completion_time, | 89 const base::TimeTicks& completion_time, |
| 80 int64 total_transfer_size) = 0; | 90 int64 total_transfer_size) = 0; |
| 81 | 91 |
| 82 protected: | 92 protected: |
| 83 virtual ~RequestPeer() {} | 93 virtual ~RequestPeer() {} |
| 84 }; | 94 }; |
| 85 | 95 |
| 86 } // namespace content | 96 } // namespace content |
| 87 | 97 |
| 88 #endif // CONTENT_PUBLIC_CHILD_REQUEST_PEER_H_ | 98 #endif // CONTENT_PUBLIC_CHILD_REQUEST_PEER_H_ |
| OLD | NEW |