HomeSort by relevance Sort by last modified time
    Searched refs:removed_visits (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/browser/sync/glue/
typed_url_model_associator_unittest.cc 234 history::VisitVector removed_visits; local
237 &new_visits, &removed_visits);
239 EXPECT_TRUE(removed_visits.empty());
267 history::VisitVector removed_visits; local
270 &new_visits, &removed_visits);
272 ASSERT_EQ(removed_visits.size(), arraysize(visits_removed));
274 EXPECT_EQ(removed_visits[c].visit_time.ToInternalValue(),
301 history::VisitVector removed_visits; local
304 &new_visits, &removed_visits);
305 EXPECT_TRUE(removed_visits.empty())
    [all...]
typed_url_model_associator.h 134 // |removed_visits| that can be applied to the history DB to make it match
135 // the sync DB version. |removed_visits| can be null if the caller does not
140 history::VisitVector* removed_visits);
typed_url_model_associator.cc 775 history::VisitVector* removed_visits) {
785 if (new_index > 0 && removed_visits) {
790 removed_visits->push_back(old_visits[old_index]);
805 if (removed_visits) {
807 removed_visits->push_back(old_visits[old_index]);

Completed in 129 milliseconds