Home | History | Annotate | Download | only in Interfaces

Lines Matching refs:subresource

184         @abstract Returns a subresource for a given URL.
185 @param URL The URL of the subresource.
186 @description Returns non-nil if the data source has fully downloaded a subresource with the given URL.
193 @abstract Adds a subresource to the data source.
194 @param subresource The subresource to be added.
195 @description addSubresource: adds a subresource to the data source's list of subresources.
196 Later, if something causes the data source to load the URL of the subresource, the data source
197 will load the data from the subresource instead of from the network. For example, if one wants to add
200 subresource with the same URL, addSubresource: will replace it.
201 - (void)addSubresource:(WebResource *)subresource;
203 HRESULT addSubresource([in] IWebResource* subresource);