Chromium Code Reviews| Index: ppapi/api/dev/ppb_url_util_dev.idl |
| =================================================================== |
| --- ppapi/api/dev/ppb_url_util_dev.idl (revision 219784) |
| +++ ppapi/api/dev/ppb_url_util_dev.idl (working copy) |
| @@ -146,4 +146,13 @@ |
| */ |
| PP_Var GetPluginInstanceURL([in] PP_Instance instance, |
| [out] PP_URLComponents_Dev components); |
| + /* |
| + * Returns the 'Referer' HTTP header value that was sent by the request |
| + * that loaded plug-in. Undefined value means 'Referer' header is absent. |
|
bbudge
2013/08/27 18:16:07
Wording is a bit awkward. How about this?
Returns
|
| + * The components pointer, if non-NULL and the canonicalized URL is valid, |
| + * will identify the components of the resulting URL. Components may be NULL |
| + * to specify that no component information is necessary. |
| + */ |
| + PP_Var GetPluginRefererURL([in] PP_Instance instance, |
| + [out] PP_URLComponents_Dev components); |
| }; |