Home
last modified time | relevance | path

Searched refs:current_session_path (Results 1 – 2 of 2) sorted by relevance

/external/chromium/chrome/browser/sessions/
Dsession_backend.cc267 const FilePath current_session_path = GetCurrentSessionPath(); in MoveCurrentSessionToLastSession() local
271 if (file_util::PathExists(current_session_path)) { in MoveCurrentSessionToLastSession()
273 if (file_util::GetFileSize(current_session_path, &file_size)) { in MoveCurrentSessionToLastSession()
282 last_session_valid_ = file_util::Move(current_session_path, in MoveCurrentSessionToLastSession()
286 if (file_util::PathExists(current_session_path)) in MoveCurrentSessionToLastSession()
287 file_util::Delete(current_session_path, false); in MoveCurrentSessionToLastSession()
/external/chromium_org/chrome/browser/sessions/
Dsession_backend.cc275 const base::FilePath current_session_path = GetCurrentSessionPath(); in MoveCurrentSessionToLastSession() local
279 if (base::PathExists(current_session_path)) { in MoveCurrentSessionToLastSession()
281 if (base::GetFileSize(current_session_path, &file_size)) { in MoveCurrentSessionToLastSession()
290 last_session_valid_ = base::Move(current_session_path, last_session_path); in MoveCurrentSessionToLastSession()
293 if (base::PathExists(current_session_path)) in MoveCurrentSessionToLastSession()
294 base::DeleteFile(current_session_path, false); in MoveCurrentSessionToLastSession()