Searched refs:URLResult (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/components/history/core/browser/
H A Durl_row.cc60 URLResult::URLResult() function in class:history::URLResult
64 URLResult::URLResult(const GURL& url, base::Time visit_time) function in class:history::URLResult
70 URLResult::URLResult(const GURL& url, function in class:history::URLResult
75 URLResult::URLResult(const URLRow& url_row) function in class:history::URLResult
80 URLResult::~URLResult() {
[all...]
H A Durl_row.h161 class URLResult : public URLRow { class in namespace:history
163 URLResult();
164 URLResult(const GURL& url, base::Time visit_time);
165 // Constructor that create a URLResult from the specified URL and title match
167 URLResult(const GURL& url,
169 explicit URLResult(const URLRow& url_row);
170 virtual ~URLResult();
189 void SwapResult(URLResult* other);
191 static bool CompareVisitTime(const URLResult& lhs, const URLResult
[all...]
H A Dhistory_types_unittest.cc41 URLResult result1(url1, base::Time::Now());
42 URLResult result2(url1, base::Time::Now());
43 URLResult result3(url2, base::Time::Now());
H A Dhistory_types.h140 // URLResult objects, plus an efficient way of looking up the index of each time
144 typedef std::vector<URLResult*> URLResultVector;
171 URLResult& back() { return *results_.back(); }
172 const URLResult& back() const { return *results_.back(); }
174 URLResult& operator[](size_t i) { return *results_[i]; }
175 const URLResult& operator[](size_t i) const { return *results_[i]; }
202 void AppendURLBySwapping(URLResult* result);
232 ScopedVector<URLResult> results_;
H A Dhistory_types.cc72 void QueryResults::AppendURLBySwapping(URLResult* result) {
73 URLResult* new_result = new URLResult;
H A Durl_database.cc384 history::URLResult info;
/external/chromium_org/chrome/browser/history/
H A Dhistory_querying_unittest.cc60 const URLResult& result = results[n];
H A Dhistory_backend.cc1233 URLResult url_result;
1258 // We don't set any of the query-specific parts of the URLResult, since
1274 std::vector<URLResult> matching_visits;
1281 URLResult url_result(text_match);
1288 URLResult::CompareVisitTime);
1292 for (std::vector<URLResult>::iterator it = matching_visits.begin();
/external/chromium_org/chrome/browser/ui/webui/
H A Dhistory_ui.cc777 history::URLResult const &page = (*results)[i];

Completed in 2637 milliseconds