Home | History | Annotate | Download | only in history

Lines Matching refs:URLResult

331 // URLResult -------------------------------------------------------------------
333 class URLResult : public URLRow {
335 URLResult();
336 URLResult(const GURL& url, base::Time visit_time);
337 // Constructor that create a URLResult from the specified URL and title match
339 URLResult(const GURL& url, const Snippet::MatchPositions& title_matches);
340 ~URLResult();
354 void SwapResult(URLResult* other);
372 // URLResult objects, plus an efficient way of looking up the index of each time
376 typedef std::vector<URLResult*> URLResultVector;
403 URLResult& operator[](size_t i) { return *results_[i]; }
404 const URLResult& operator[](size_t i) const { return *results_[i]; }
431 void AppendURLBySwapping(URLResult* result);