Home
last modified time | relevance | path

Searched refs:deleted_details (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/chrome/browser/history/android/
Dandroid_provider_backend_unittest.cc88 URLsDeletedDetails* deleted_details() const { in deleted_details() function in history::AndroidProviderBackendDelegate
531 EXPECT_FALSE(delegate_.deleted_details()); in TEST_F()
551 EXPECT_FALSE(delegate_.deleted_details()); in TEST_F()
664 ASSERT_TRUE(delegate_.deleted_details()); in TEST_F()
666 EXPECT_EQ(1u, delegate_.deleted_details()->rows.size()); in TEST_F()
667 EXPECT_EQ(row1.url(), delegate_.deleted_details()->rows[0].url()); in TEST_F()
669 delegate_.deleted_details()->rows[0].last_visit()); in TEST_F()
671 delegate_.deleted_details()->rows[0].title()); in TEST_F()
711 ASSERT_TRUE(delegate_.deleted_details()); in TEST_F()
713 EXPECT_EQ(1u, delegate_.deleted_details()->rows.size()); in TEST_F()
[all …]
Dandroid_provider_backend.cc1011 scoped_ptr<URLsDeletedDetails> deleted_details(new URLsDeletedDetails); in SimulateUpdateURL() local
1017 deleted_details->rows.push_back(old_url_row); in SimulateUpdateURL()
1091 deleted_details.PassAs<HistoryDetails>()); in SimulateUpdateURL()
1140 scoped_ptr<URLsDeletedDetails> deleted_details(new URLsDeletedDetails); in DeleteHistoryInternal() local
1146 deleted_details->rows.push_back(url_row); in DeleteHistoryInternal()
1162 deleted_details.PassAs<HistoryDetails>()); in DeleteHistoryInternal()
/external/chromium_org/chrome/browser/autocomplete/
Dshortcuts_backend.cc184 const history::URLsDeletedDetails* deleted_details = in Observe() local
186 if (deleted_details->all_history) { in Observe()
191 const history::URLRows& rows(deleted_details->rows); in Observe()
/external/chromium_org/chrome/browser/history/
Dtop_sites_impl.cc746 content::Details<history::URLsDeletedDetails> deleted_details(details); in Observe() local
747 if (deleted_details->all_history) { in Observe()
752 for (URLRows::const_iterator i = deleted_details->rows.begin(); in Observe()
753 i != deleted_details->rows.end(); ++i) { in Observe()
Din_memory_url_index_unittest.cc889 URLsDeletedDetails deleted_details; in TEST_F() local
890 deleted_details.all_history = false; in TEST_F()
891 deleted_details.rows.push_back(matches[0].url_info); in TEST_F()
894 content::Details<history::HistoryDetails>(&deleted_details)); in TEST_F()
Dhistory_service.cc876 content::Details<history::URLsDeletedDetails> deleted_details(details); in Observe() local
878 if (deleted_details->all_history) { in Observe()
881 URLIteratorFromURLRows iterator(deleted_details->rows); in Observe()
/external/chromium_org/chrome/browser/sync/glue/
Dfavicon_cache.cc578 content::Details<history::URLsDeletedDetails> deleted_details(details); in Observe() local
581 if (deleted_details->expired) in Observe()
584 if (!deleted_details->all_history) { in Observe()
585 DeleteSyncedFavicons(deleted_details->favicon_urls); in Observe()