diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-26 04:51:07 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-26 04:51:07 +0000 |
commit | 6f75c95235c7ea357e180ddfb6d1cba143d87645 (patch) | |
tree | e5440672cfbe6bac4d28f6790ab1c5b4ee8b3f93 /ppapi/thunk/ppb_url_request_info_api.h | |
parent | ecba6c3763755a5c617972d74f0d798939183260 (diff) | |
download | chromium_src-6f75c95235c7ea357e180ddfb6d1cba143d87645.zip chromium_src-6f75c95235c7ea357e180ddfb6d1cba143d87645.tar.gz chromium_src-6f75c95235c7ea357e180ddfb6d1cba143d87645.tar.bz2 |
Convert FileRefImpl and URLRequestInfo to shared_impl.
One nice side effect of this change is that there are no longer any IPCs
associated with the request info. Instead, we just send the parameters to
the host when we open a url loader.
Review URL: http://codereview.chromium.org/7706021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98391 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/thunk/ppb_url_request_info_api.h')
-rw-r--r-- | ppapi/thunk/ppb_url_request_info_api.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ppapi/thunk/ppb_url_request_info_api.h b/ppapi/thunk/ppb_url_request_info_api.h index 3f6d0ed..56634bc 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 { + +struct 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 |