HomeSort by relevance Sort by last modified time
    Searched refs:URLResult (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/components/history/core/browser/
url_row.cc 60 URLResult::URLResult()
64 URLResult::URLResult(const GURL& url, base::Time visit_time)
70 URLResult::URLResult(const GURL& url,
75 URLResult::URLResult(const URLRow& url_row)
80 URLResult::~URLResult() {
    [all...]
url_row.h 161 class URLResult : public URLRow {
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& rhs)
    [all...]
history_types.h 140 // 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_;
history_types_unittest.cc 41 URLResult result1(url1, base::Time::Now());
42 URLResult result2(url1, base::Time::Now());
43 URLResult result3(url2, base::Time::Now());
history_types.cc 72 void QueryResults::AppendURLBySwapping(URLResult* result) {
73 URLResult* new_result = new URLResult;
url_database.cc 384 history::URLResult info;
  /external/chromium_org/chrome/browser/history/
history_querying_unittest.cc 60 const URLResult& result = results[n];
history_backend.cc     [all...]
  /external/chromium_org/chrome/browser/ui/webui/
history_ui.cc 777 history::URLResult const &page = (*results)[i];
    [all...]

Completed in 1066 milliseconds