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

  /external/chromium_org/chrome/browser/sync/glue/
typed_url_model_associator_unittest.cc 51 sync_pb::TypedUrlSpecifics typed_url; local
52 typed_url.set_url(url);
53 typed_url.set_title(title);
54 typed_url.set_hidden(hidden);
55 typed_url.add_visits(last_visit);
56 typed_url.add_visit_transitions(ui::PAGE_TRANSITION_TYPED);
57 return typed_url;
328 sync_pb::TypedUrlSpecifics typed_url; local
329 TypedUrlModelAssociator::WriteToTypedUrlSpecifics(url, visits, &typed_url);
331 EXPECT_EQ(2, typed_url.visits_size())
350 sync_pb::TypedUrlSpecifics typed_url; local
375 sync_pb::TypedUrlSpecifics typed_url; local
394 sync_pb::TypedUrlSpecifics typed_url; local
    [all...]
typed_url_model_associator.cc 207 "Could not get the typed_url entries.",
233 "Server did not create the top-level typed_url node. We "
251 sync_pb::TypedUrlSpecifics typed_url(
253 DCHECK_EQ(tag, typed_url.url());
264 MergeUrls(typed_url, *ix, &visits, &new_url, &added_visits);
271 "Failed to edit typed_url sync node.",
277 if (typed_url.visits_size() > 0) {
279 base::Time::FromInternalValue(typed_url.visits(0));
285 // visit vector contains all the items in typed_url.visits.
310 "Failed to create typed_url sync node: " + tag
677 sync_pb::TypedUrlSpecifics typed_url; local
    [all...]
typed_url_model_associator.h 41 // * Algorithm to associate typed_url model and sync model.
91 void UpdateFromSyncDB(const sync_pb::TypedUrlSpecifics& typed_url,
113 // Merges the URL information in |typed_url| with the URL information from the
123 static MergeResult MergeUrls(const sync_pb::TypedUrlSpecifics& typed_url,
typed_url_change_processor.h 92 // new one for the passed |typed_url| if one does not already exist. Returns
94 bool CreateOrUpdateSyncNode(history::URLRow typed_url,
typed_url_change_processor.cc 73 DVLOG(1) << "Observed typed_url change.";
257 GURL url(it->specifics.typed_url().url());
276 const sync_pb::TypedUrlSpecifics& typed_url(
278 DCHECK(typed_url.visits_size());
280 if (model_associator_->ShouldIgnoreUrl(GURL(typed_url.url())))
284 model_associator_->FilterExpiredVisits(typed_url);
  /external/chromium_org/chrome/browser/history/
typed_url_syncable_service.cc 309 sync_pb::TypedUrlSpecifics* typed_url = entity_specifics.mutable_typed_url(); local
312 typed_url->set_url(row.url().spec());
314 WriteToTypedUrlSpecifics(row, visits, typed_url);
326 sync_pb::TypedUrlSpecifics* typed_url) {
333 typed_url->set_url(url.url().spec());
334 typed_url->set_title(base::UTF16ToUTF8(url.title()));
335 typed_url->set_hidden(url.hidden());
391 typed_url->add_visits(visit->visit_time.ToInternalValue());
392 typed_url->add_visit_transitions(visit->transition);
396 if (typed_url->visits_size() == 0)
    [all...]
typed_url_syncable_service.h 92 // new one for the passed |typed_url| if one does not already exist. Returns
94 bool CreateOrUpdateSyncNode(URLRow typed_url,
typed_url_syncable_service_unittest.cc 282 changes[0].sync_data().GetSpecifics().typed_url();
328 changes[0].sync_data().GetSpecifics().typed_url();
406 changes[0].sync_data().GetSpecifics().typed_url();
475 changes[i].sync_data().GetSpecifics().typed_url();
561 changes[0].sync_data().GetSpecifics().typed_url();
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_typed_url_unittest.cc 305 const sync_pb::TypedUrlSpecifics& typed_url(
307 history::URLRow new_url(GURL(typed_url.url()));
309 new_url.set_title(base::UTF8ToUTF16(typed_url.title()));
310 DCHECK(typed_url.visits_size());
311 DCHECK_EQ(typed_url.visits_size(), typed_url.visit_transitions_size());
313 typed_url.visits(typed_url.visits_size() - 1)));
314 new_url.set_hidden(typed_url.hidden());
    [all...]
  /external/chromium_org/sync/internal_api/
base_node.cc 256 return GetEntitySpecifics().typed_url();
  /external/chromium_org/sync/protocol/
proto_value_conversions_unittest.cc 303 SET_FIELD(typed_url);
proto_value_conversions.cc 820 SET_FIELD(typed_url, TypedUrlSpecificsToValue);
    [all...]

Completed in 274 milliseconds