Home | History | Annotate | Download | only in webdata

Lines Matching refs:Handle

57 // All requests return a handle. The handle can be used to cancel the request.
181 // All requests return an opaque handle of the following type.
182 typedef int Handle;
194 Handle handle,
199 Handle GetHandle() const;
219 Handle handle_;
235 Handle handle,
238 : WebDataRequest(service, handle, consumer),
257 Handle handle,
261 : WebDataRequest(service, handle, consumer),
300 void CancelRequest(Handle h);
314 // Many of the keyword related methods do not return a handle. This is because
325 Handle GetKeywords(WebDataServiceConsumer* consumer);
352 Handle GetWebAppImages(const GURL& app_url, WebDataServiceConsumer* consumer);
368 Handle GetAllTokens(WebDataServiceConsumer* consumer);
399 Handle GetLogins(const webkit_glue::PasswordForm& form,
407 Handle GetAutofillableLogins(WebDataServiceConsumer* consumer);
413 Handle GetBlacklistLogins(WebDataServiceConsumer* consumer);
426 Handle GetIE7Login(const IE7PasswordInfo& info,
443 Handle GetFormValuesForElementName(const string16& name,
468 Handle GetAutofillProfiles(WebDataServiceConsumer* consumer);
488 Handle GetCreditCards(WebDataServiceConsumer* consumer);
512 void RequestCompleted(Handle h);
553 // Return the next request handle.
649 // A lock to protect pending requests and next request handle.
652 // Next handle to be used for requests. Incremented for each use.
653 Handle next_request_handle_;
655 typedef std::map<Handle, WebDataRequest*> RequestMap;
679 virtual void OnWebDataServiceRequestDone(WebDataService::Handle h,