Home | History | Annotate | Download | only in history

Lines Matching refs:Details

66     const content::NotificationDetails& details) {
69 OnURLVisitedOrModified(content::Details<URLVisitedDetails>(details)->row);
73 *content::Details<KeywordSearchUpdatedDetails>(details).ptr());
77 *content::Details<KeywordSearchDeletedDetails>(details).ptr());
81 content::Details<URLsModifiedDetails>(details).ptr();
90 OnURLsDeleted(*content::Details<URLsDeletedDetails>(details).ptr());
96 *(content::Details<TemplateURLID>(details).ptr()));
114 void InMemoryHistoryBackend::OnURLsDeleted(const URLsDeletedDetails& details) {
117 if (details.all_history) {
127 for (URLRows::const_iterator row = details.rows.begin();
128 row != details.rows.end(); ++row) {
136 const KeywordSearchUpdatedDetails& details) {
137 DCHECK(details.url_row.id());
138 db_->InsertOrUpdateURLRowByID(details.url_row);
140 details.url_row.id(), details.keyword_id, details.term);
144 const KeywordSearchDeletedDetails& details) {
147 db_->DeleteKeywordSearchTermForURL(details.url_row_id);