HomeSort by relevance Sort by last modified time
    Searched refs:URLRow (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/chromium/chrome/browser/history/
url_database.h 56 bool GetURLRow(URLID url_id, URLRow* info);
60 bool GetAllTypedUrls(std::vector<history::URLRow>* urls);
66 URLID GetRowForURL(const GURL& url, URLRow* info);
73 bool UpdateURLRow(URLID url_id, const URLRow& info);
80 URLID AddURL(const URLRow& info) {
101 URLID AddTemporaryURL(const URLRow& row) {
135 bool GetNextURL(history::URLRow* r);
174 std::vector<URLRow>* results);
186 history::URLRow* info);
265 URLID AddURLInternal(const URLRow& info, bool is_temporary)
    [all...]
url_database_unittest.cc 22 bool IsURLRowEqual(const URLRow& a,
23 const URLRow& b) {
74 URLRow url_info1(url1);
83 URLRow url_info2(url2);
92 URLRow info;
108 URLRow info2;
127 URLRow url_info1(GURL("http://www.google.com/"));
166 URLRow url_info1(GURL("http://www.google.com/"));
190 URLRow url_no_match(GURL("http://www.url_no_match.com/"));
195 URLRow url_match_visit_count(GURL("http://www.url_match_visit_count.com/"))
    [all...]
history_notifications.h 34 URLRow row;
49 std::vector<URLRow> changed_urls;
history_types.cc 14 // URLRow ----------------------------------------------------------------------
16 URLRow::URLRow() {
20 URLRow::URLRow(const GURL& url) : url_(url) {
25 URLRow::URLRow(const GURL& url, URLID id) : url_(url) {
32 URLRow::~URLRow() {
35 URLRow& URLRow::operator=(const URLRow& other)
    [all...]
history_types.h 47 // URLRow ---------------------------------------------------------------------
63 class URLRow {
65 URLRow();
67 explicit URLRow(const GURL& url);
69 // We need to be able to set the id of a URLRow that's being passed through
71 URLRow(const GURL& url, URLID id);
73 virtual ~URLRow();
74 URLRow& operator=(const URLRow& other);
121 // Swaps the contents of this URLRow with another, which allows it to b
    [all...]
expire_history_backend.h 155 void DeleteOneURL(const URLRow& url_row,
164 URLID ArchiveOneURL(const URLRow& url_row);
168 void DeleteURLs(const std::vector<URLRow>& urls,
url_database.cc 36 bool URLDatabase::URLEnumerator::GetNextURL(URLRow* r) {
72 // Convenience to fill a history::URLRow. Must be in sync with the fields in
74 void URLDatabase::FillURLRow(sql::Statement& s, history::URLRow* i) {
85 bool URLDatabase::GetURLRow(URLID url_id, URLRow* info) {
103 bool URLDatabase::GetAllTypedUrls(std::vector<history::URLRow>* urls) {
110 URLRow info;
117 URLID URLDatabase::GetRowForURL(const GURL& url, history::URLRow* info) {
134 const history::URLRow& info) {
151 URLID URLDatabase::AddURLInternal(const history::URLRow& info,
296 std::vector<history::URLRow>* results)
    [all...]
expire_history_backend_unittest.cc 79 void EnsureURLInfoGone(const URLRow& row);
209 URLRow url_row1(GURL("http://www.google.com/1"));
215 URLRow url_row2(GURL("http://www.google.com/2"));
222 URLRow url_row3(GURL("http://www.google.com/3"));
290 URLRow url_row1(url);
333 URLRow info;
360 void ExpireHistoryTest::EnsureURLInfoGone(const URLRow& row) {
362 URLRow temp_row;
432 URLRow row(GURL("http://www.google.com/2"));
461 URLRow last_row
    [all...]
in_memory_url_index.h 62 explicit ScoredHistoryMatch(const URLRow& url_info);
146 void UpdateURL(URLID row_id, const URLRow& row);
230 typedef std::vector<URLRow> URLRowVector;
233 typedef std::map<HistoryID, URLRow> HistoryInfoMap;
286 bool IndexRow(const URLRow& row);
338 const URLRow& row,
expire_history_backend.cc 146 std::map<URLID, URLRow> affected_urls;
151 std::vector<URLRow> deleted_urls;
192 URLRow url_row;
339 std::vector<URLRow> typed_urls_changed; // Collect this for later.
373 std::map<URLID, URLRow>::const_iterator found =
375 const URLRow* cur_row = NULL;
377 URLRow row;
395 const URLRow& url_row,
430 URLID ExpireHistoryBackend::ArchiveOneURL(const URLRow& url_row) {
436 URLRow archived_row
    [all...]
in_memory_history_backend.cc 128 std::vector<history::URLRow>::const_iterator i;
174 URLRow url_row;
180 URLRow new_row(details.url);
history_backend.h 275 virtual bool GetAllTypedURLs(std::vector<history::URLRow>* urls);
279 virtual bool UpdateURL(URLID id, const history::URLRow& url);
288 virtual bool GetURL(const GURL& url, history::URLRow* url_row);
316 // added for each given URL at the last visit time in the URLRow.
318 void AddPagesWithDetails(const std::vector<URLRow>& info,
503 bool ClearAllThumbnailHistory(std::vector<URLRow>* kept_urls);
510 bool ClearAllMainHistory(const std::vector<URLRow>& kept_urls);
history_backend_unittest.cc 122 URLRow row;
234 URLRow row1(GURL("http://www.google.com/"));
240 URLRow row2(GURL("http://news.google.com/"));
245 std::vector<URLRow> rows;
267 URLRow outrow1;
309 URLRow outrow2;
367 URLRow row1(GURL("http://www.google.com/"));
373 URLRow row2(GURL("http://news.google.com/"));
378 std::vector<URLRow> rows;
395 URLRow tmp_url_row
    [all...]
  /external/chromium/chrome/browser/autocomplete/
history_provider_util.h 21 HistoryMatch(const URLRow& url_info,
28 URLRow url_info;
history_provider.h 16 class URLRow;
history_provider_util.cc 16 HistoryMatch::HistoryMatch(const URLRow& url_info,
history_url_provider.h 22 class URLRow;
221 static void EnsureMatchPresent(const history::URLRow& info,
  /external/chromium/chrome/browser/sync/
profile_sync_service_typed_url_unittest.cc 49 using history::URLRow;
78 MOCK_METHOD1(GetAllTypedURLs, bool(std::vector<history::URLRow>* entries));
81 MOCK_METHOD2(UpdateURL, bool(history::URLID id, const history::URLRow& url));
86 MOCK_METHOD2(GetURL, bool(const GURL& url_id, history::URLRow* url_row));
200 void AddTypedUrlSyncNode(const history::URLRow& url,
214 void GetTypedUrlsFromSyncDB(std::vector<history::URLRow>* urls) {
228 history::URLRow new_url(GURL(typed_url.url()));
250 static bool URLsEqual(history::URLRow& lhs, history::URLRow& rhs) {
259 static history::URLRow MakeTypedUrlEntry(const char* url
    [all...]
  /external/chromium/chrome/browser/sync/glue/
typed_url_model_associator_unittest.cc 18 static history::URLRow MakeTypedUrlRow(const char* url,
25 history::URLRow history_url(gurl);
51 static bool URLsEqual(history::URLRow& lhs, history::URLRow& rhs) {
62 history::URLRow row1(MakeTypedUrlRow("http://pie.com/", "pie",
67 history::URLRow new_row1(GURL("http://pie.com/"));
74 history::URLRow row2(MakeTypedUrlRow("http://pie.com/", "pie",
80 history::URLRow expected2(MakeTypedUrlRow("http://pie.com/", "pie",
82 history::URLRow new_row2(GURL("http://pie.com/"));
90 history::URLRow row3(MakeTypedUrlRow("http://pie.com/", "pie"
    [all...]
typed_url_model_associator.h 26 class URLRow;
50 typedef std::vector<history::URLRow> TypedUrlVector;
51 typedef std::vector<std::pair<history::URLID, history::URLRow> >
116 const history::URLRow& url,
118 history::URLRow* new_url,
120 static void WriteToSyncNode(const history::URLRow& url,
typed_url_change_processor.h 27 class URLRow;
  /external/chromium/chrome/browser/importer/
external_process_importer_client.h 25 class URLRow;
74 const std::vector<history::URLRow>& history_rows_group,
116 std::vector<history::URLRow> history_rows_;
profile_import_process_client.h 20 class URLRow;
54 const std::vector<history::URLRow>& history_rows_group,
safari_importer.h 31 class URLRow;
93 void ParseHistoryItems(std::vector<history::URLRow>* history_items);
importer_bridge.h 39 virtual void SetHistoryItems(const std::vector<history::URLRow>& rows,

Completed in 461 milliseconds

1 2 3