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

  /external/chromium_org/chrome/browser/history/
top_sites_database.cc 24 // url_rank Index of the URL in that thumbnail, 0-based. The thumbnail
67 "url_rank INTEGER,"
148 "WHERE (url_rank = -1 AND last_forced = 0) "
149 "OR (url_rank <> -1 AND last_forced <> 0)";
162 // Enforce invariant that url_rank>=0 forms a contiguous series.
168 "SELECT url_rank, rowid FROM thumbnails WHERE url_rank <> -1 "
169 "ORDER BY url_rank";
173 "UPDATE thumbnails SET url_rank = ? WHERE rowid = ?";
176 // Update any rows where |next_rank| doesn't match |url_rank|
180 const int url_rank = select_statement.ColumnInt(0); local
    [all...]
top_sites_impl.cc 530 int url_rank = index - cache_->GetNumForcedURLs(); local
533 url_rank < 0 ? -1 : url_rank,
    [all...]

Completed in 74 milliseconds