Searched defs:GetNextDownloadId (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/chrome/browser/history/
H A Ddownload_database.cc332 uint32 DownloadDatabase::GetNextDownloadId() { function in class:history::DownloadDatabase
338 // 0 = kInvalidId, so GetNextDownloadId() will set *id = kInvalidId + 1.
340 // then max(id) will return <= kInvalidId, so GetNextDownloadId should return
376 // the max(id) logic in GetNextDownloadId().
H A Dhistory_service.cc702 void HistoryService::GetNextDownloadId( function in class:HistoryService
709 base::Bind(&HistoryBackend::GetNextDownloadId, history_backend_.get()),
H A Dhistory_backend.cc1146 uint32 HistoryBackend::GetNextDownloadId() { function in class:history::HistoryBackend
1147 return db_ ? db_->GetNextDownloadId() : content::DownloadItem::kInvalidId;

Completed in 162 milliseconds