Home | History | Annotate | Download | only in history

Lines Matching defs:Request

30   // Handles all the work of making an API request. This class encapsulates
31 // the entire state of the request. When an instance is destroyed, all
32 // aspects of the request are cancelled.
33 class Request {
35 virtual ~Request();
37 // Returns true if the request is "pending" (i.e., it has been started, but
42 Request();
48 typedef base::Callback<void(Request*, const base::DictionaryValue*)>
60 // The caller takes ownership of the returned Request. If it is destroyed, the
61 // request is cancelled.
62 scoped_ptr<Request> QueryHistory(
80 // Called by |request| when a web history query has completed. Unpacks the
85 WebHistoryService::Request* request,
88 // Called by |request| when a request to delete history from the server has
93 WebHistoryService::Request* request,
105 std::set<Request*> pending_expire_requests_;