Home
last modified time | relevance | path

Searched refs:update_handler_map_ (Results 1 – 5 of 5) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/components/sync/engine_impl/
H A Dmodel_type_registry.cc66 DCHECK(update_handler_map_.find(type) == update_handler_map_.end()); in ConnectDataType()
89 update_handler_map_.insert(std::make_pair(type, worker_ptr)); in ConnectDataType()
101 DCHECK(update_handler_map_.find(type) != update_handler_map_.end()); in DisconnectDataType()
104 size_t updaters_erased = update_handler_map_.erase(type); in DisconnectDataType()
136 for (const auto& kv : update_handler_map_) { in GetInitialSyncEndedTypes()
152 auto it = update_handler_map_.find(type); in GetUpdateHandler()
153 return it == update_handler_map_.end() ? nullptr : it->second; in GetUpdateHandler()
157 return &update_handler_map_; in update_handler_map()
H A Dget_updates_processor.cc177 : update_handler_map_(update_handler_map), delegate_(delegate) {} in GetUpdatesProcessor()
200 auto handler_it = update_handler_map_->find(type); in PrepareGetUpdates()
201 DCHECK(handler_it != update_handler_map_->end()) in PrepareGetUpdates()
343 auto update_handler_iter = update_handler_map_->find(type); in ProcessGetUpdatesResponse()
350 if (update_handler_iter != update_handler_map_->end()) { in ProcessGetUpdatesResponse()
372 delegate_.ApplyUpdates(gu_types, status_controller, update_handler_map_); in ApplyUpdates()
H A Dget_updates_processor.h91 UpdateHandlerMap* update_handler_map_; variable
H A Dget_updates_processor_unittest.cc53 new GetUpdatesProcessor(&update_handler_map_, delegate)); in BuildGetUpdatesProcessor()
83 update_handler_map_.insert(std::make_pair(type, handler_ptr)); in AddUpdateHandler()
91 UpdateHandlerMap update_handler_map_; member in syncer::GetUpdatesProcessorTest
H A Dmodel_type_registry.h98 UpdateHandlerMap update_handler_map_; variable