diff options
Diffstat (limited to 'webkit/plugins/ppapi/ppb_url_request_info_impl.h')
-rw-r--r-- | webkit/plugins/ppapi/ppb_url_request_info_impl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/webkit/plugins/ppapi/ppb_url_request_info_impl.h b/webkit/plugins/ppapi/ppb_url_request_info_impl.h index 1b06aa7..9d6c766 100644 --- a/webkit/plugins/ppapi/ppb_url_request_info_impl.h +++ b/webkit/plugins/ppapi/ppb_url_request_info_impl.h @@ -84,6 +84,11 @@ class PPB_URLRequestInfo_Impl : public Resource { bool allow_cross_origin_requests_; bool allow_credentials_; + // Similar to the custom referrer (above), but for custom content transfer + // encoding. + bool has_custom_content_transfer_encoding_; + std::string custom_content_transfer_encoding_; + DISALLOW_COPY_AND_ASSIGN(PPB_URLRequestInfo_Impl); }; |