| Index: ppapi/thunk/ppb_url_request_info_api.h
|
| diff --git a/ppapi/thunk/ppb_url_request_info_api.h b/ppapi/thunk/ppb_url_request_info_api.h
|
| index 3f6d0ed5ba6dc336d8071e2a388f409a072857cb..804fb0cca6d1d874fbe465fe0e8756df1d36b808 100644
|
| --- a/ppapi/thunk/ppb_url_request_info_api.h
|
| +++ b/ppapi/thunk/ppb_url_request_info_api.h
|
| @@ -8,6 +8,9 @@
|
| #include "ppapi/c/ppb_url_request_info.h"
|
|
|
| namespace ppapi {
|
| +
|
| +class PPB_URLRequestInfo_Data;
|
| +
|
| namespace thunk {
|
|
|
| class PPB_URLRequestInfo_API {
|
| @@ -21,6 +24,9 @@ class PPB_URLRequestInfo_API {
|
| int64_t start_offset,
|
| int64_t number_of_bytes,
|
| PP_Time expected_last_modified_time) = 0;
|
| +
|
| + // Internal-only function for retrieving the current config.
|
| + virtual const PPB_URLRequestInfo_Data& GetData() const = 0;
|
| };
|
|
|
| } // namespace thunk
|
|
|