Home | History | Annotate | Download | only in history

Lines Matching defs:cur_version

262   int cur_version = meta_table_.GetVersionNumber();
266 if (cur_version == 15) {
272 ++cur_version;
273 meta_table_.SetVersionNumber(cur_version);
275 std::min(cur_version, kCompatibleVersionNumber));
278 if (cur_version == 16) {
288 ++cur_version;
289 meta_table_.SetVersionNumber(cur_version);
292 if (cur_version == 17) {
295 ++cur_version;
296 meta_table_.SetVersionNumber(cur_version);
299 if (cur_version == 18) {
302 cur_version = 19;
303 meta_table_.SetVersionNumber(cur_version);
306 if (cur_version == 19) {
307 cur_version++;
308 meta_table_.SetVersionNumber(cur_version);
316 LOG_IF(WARNING, cur_version < GetCurrentVersion()) <<
317 "History database version " << cur_version << " is too old to handle.";