HomeSort by relevance Sort by last modified time
    Searched defs:URLRow (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/components/history/core/browser/
url_row.cc 11 URLRow::URLRow() {
15 URLRow::URLRow(const GURL& url) : url_(url) {
20 URLRow::URLRow(const GURL& url, URLID id) : url_(url) {
27 URLRow::~URLRow() {
30 URLRow& URLRow::operator=(const URLRow& other)
    [all...]
url_row.h 30 class URLRow {
32 URLRow();
34 explicit URLRow(const GURL& url);
36 // We need to be able to set the id of a URLRow that's being passed through
38 URLRow(const GURL& url, URLID id);
40 virtual ~URLRow();
41 URLRow& operator=(const URLRow& other);
102 // Helper functor that determines if an URLRow refers to a given URL.
107 bool operator()(const URLRow& row)
    [all...]

Completed in 34 milliseconds