• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebKit-7600.1.25/mac/WebView/

Lines Matching refs:identifier

41     The various progress methods of this protocol all receive an identifier as the
42 parameter. This identifier can be used to track messages associated with a single
53 @discussion An implementor of WebResourceLoadDelegate should provide an identifier
54 that can be used to track the load of a single resource. This identifier will be
56 identifier is useful to track changes to a resources request, which will be
58 @result An identifier that will be passed back to the implementor for each callback.
59 The identifier will be retained.
68 @param identifier An identifier that can be used to track the progress of a resource load across
77 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource;
88 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
95 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
101 @param identifier An identifier that can be used to track the progress of a resource load across
110 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)dataSource;
116 @param identifier An identifier that can be used to track the progress of a resource load across
121 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveContentLength:(NSInteger)length fromDataSource:(WebDataSource *)dataSource;
127 @param identifier An identifier that can be used to track the progress of a resource load across
131 - (void)webView:(WebView *)sender resource:(id)identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSource;
137 @param identifier An identifier that can be used to track the progress of a resource load across
142 - (void)webView:(WebView *)sender resource:(id)identifier didFailLoadingWithError:(NSError *)error fromDataSource:(WebDataSource *)dataSource;